Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[sfrench/cifs-2.6.git] / arch / arm / mach-ixp4xx / common.c
1 /*
2  * arch/arm/mach-ixp4xx/common.c
3  *
4  * Generic code shared across all IXP4XX platforms
5  *
6  * Maintainer: Deepak Saxena <dsaxena@plexity.net>
7  *
8  * Copyright 2002 (c) Intel Corporation
9  * Copyright 2003-2004 (c) MontaVista, Software, Inc. 
10  * 
11  * This file is licensed under  the terms of the GNU General Public 
12  * License version 2. This program is licensed "as is" without any 
13  * warranty of any kind, whether express or implied.
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/mm.h>
18 #include <linux/init.h>
19 #include <linux/serial.h>
20 #include <linux/tty.h>
21 #include <linux/platform_device.h>
22 #include <linux/serial_core.h>
23 #include <linux/interrupt.h>
24 #include <linux/bitops.h>
25 #include <linux/time.h>
26 #include <linux/timex.h>
27 #include <linux/clocksource.h>
28 #include <linux/clockchips.h>
29 #include <linux/io.h>
30 #include <linux/export.h>
31
32 #include <mach/udc.h>
33 #include <mach/hardware.h>
34 #include <mach/io.h>
35 #include <asm/uaccess.h>
36 #include <asm/pgtable.h>
37 #include <asm/page.h>
38 #include <asm/irq.h>
39 #include <asm/sched_clock.h>
40 #include <asm/system_misc.h>
41
42 #include <asm/mach/map.h>
43 #include <asm/mach/irq.h>
44 #include <asm/mach/time.h>
45
46 static void __init ixp4xx_clocksource_init(void);
47 static void __init ixp4xx_clockevent_init(void);
48 static struct clock_event_device clockevent_ixp4xx;
49
50 /*************************************************************************
51  * IXP4xx chipset I/O mapping
52  *************************************************************************/
53 static struct map_desc ixp4xx_io_desc[] __initdata = {
54         {       /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
55                 .virtual        = IXP4XX_PERIPHERAL_BASE_VIRT,
56                 .pfn            = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
57                 .length         = IXP4XX_PERIPHERAL_REGION_SIZE,
58                 .type           = MT_DEVICE
59         }, {    /* Expansion Bus Config Registers */
60                 .virtual        = IXP4XX_EXP_CFG_BASE_VIRT,
61                 .pfn            = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
62                 .length         = IXP4XX_EXP_CFG_REGION_SIZE,
63                 .type           = MT_DEVICE
64         }, {    /* PCI Registers */
65                 .virtual        = IXP4XX_PCI_CFG_BASE_VIRT,
66                 .pfn            = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
67                 .length         = IXP4XX_PCI_CFG_REGION_SIZE,
68                 .type           = MT_DEVICE
69         },
70 #ifdef CONFIG_DEBUG_LL
71         {       /* Debug UART mapping */
72                 .virtual        = IXP4XX_DEBUG_UART_BASE_VIRT,
73                 .pfn            = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
74                 .length         = IXP4XX_DEBUG_UART_REGION_SIZE,
75                 .type           = MT_DEVICE
76         }
77 #endif
78 };
79
80 void __init ixp4xx_map_io(void)
81 {
82         iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
83 }
84
85
86 /*************************************************************************
87  * IXP4xx chipset IRQ handling
88  *
89  * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
90  *       (be it PCI or something else) configures that GPIO line
91  *       as an IRQ.
92  **************************************************************************/
93 enum ixp4xx_irq_type {
94         IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
95 };
96
97 /* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
98 static unsigned long long ixp4xx_irq_edge = 0;
99
100 /*
101  * IRQ -> GPIO mapping table
102  */
103 static signed char irq2gpio[32] = {
104         -1, -1, -1, -1, -1, -1,  0,  1,
105         -1, -1, -1, -1, -1, -1, -1, -1,
106         -1, -1, -1,  2,  3,  4,  5,  6,
107          7,  8,  9, 10, 11, 12, -1, -1,
108 };
109
110 int gpio_to_irq(int gpio)
111 {
112         int irq;
113
114         for (irq = 0; irq < 32; irq++) {
115                 if (irq2gpio[irq] == gpio)
116                         return irq;
117         }
118         return -EINVAL;
119 }
120 EXPORT_SYMBOL(gpio_to_irq);
121
122 int irq_to_gpio(unsigned int irq)
123 {
124         int gpio = (irq < 32) ? irq2gpio[irq] : -EINVAL;
125
126         if (gpio == -1)
127                 return -EINVAL;
128
129         return gpio;
130 }
131 EXPORT_SYMBOL(irq_to_gpio);
132
133 static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type)
134 {
135         int line = irq2gpio[d->irq];
136         u32 int_style;
137         enum ixp4xx_irq_type irq_type;
138         volatile u32 *int_reg;
139
140         /*
141          * Only for GPIO IRQs
142          */
143         if (line < 0)
144                 return -EINVAL;
145
146         switch (type){
147         case IRQ_TYPE_EDGE_BOTH:
148                 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
149                 irq_type = IXP4XX_IRQ_EDGE;
150                 break;
151         case IRQ_TYPE_EDGE_RISING:
152                 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
153                 irq_type = IXP4XX_IRQ_EDGE;
154                 break;
155         case IRQ_TYPE_EDGE_FALLING:
156                 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
157                 irq_type = IXP4XX_IRQ_EDGE;
158                 break;
159         case IRQ_TYPE_LEVEL_HIGH:
160                 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
161                 irq_type = IXP4XX_IRQ_LEVEL;
162                 break;
163         case IRQ_TYPE_LEVEL_LOW:
164                 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
165                 irq_type = IXP4XX_IRQ_LEVEL;
166                 break;
167         default:
168                 return -EINVAL;
169         }
170
171         if (irq_type == IXP4XX_IRQ_EDGE)
172                 ixp4xx_irq_edge |= (1 << d->irq);
173         else
174                 ixp4xx_irq_edge &= ~(1 << d->irq);
175
176         if (line >= 8) {        /* pins 8-15 */
177                 line -= 8;
178                 int_reg = IXP4XX_GPIO_GPIT2R;
179         } else {                /* pins 0-7 */
180                 int_reg = IXP4XX_GPIO_GPIT1R;
181         }
182
183         /* Clear the style for the appropriate pin */
184         *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
185                         (line * IXP4XX_GPIO_STYLE_SIZE));
186
187         *IXP4XX_GPIO_GPISR = (1 << line);
188
189         /* Set the new style */
190         *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
191
192         /* Configure the line as an input */
193         gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN);
194
195         return 0;
196 }
197
198 static void ixp4xx_irq_mask(struct irq_data *d)
199 {
200         if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
201                 *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32));
202         else
203                 *IXP4XX_ICMR &= ~(1 << d->irq);
204 }
205
206 static void ixp4xx_irq_ack(struct irq_data *d)
207 {
208         int line = (d->irq < 32) ? irq2gpio[d->irq] : -1;
209
210         if (line >= 0)
211                 *IXP4XX_GPIO_GPISR = (1 << line);
212 }
213
214 /*
215  * Level triggered interrupts on GPIO lines can only be cleared when the
216  * interrupt condition disappears.
217  */
218 static void ixp4xx_irq_unmask(struct irq_data *d)
219 {
220         if (!(ixp4xx_irq_edge & (1 << d->irq)))
221                 ixp4xx_irq_ack(d);
222
223         if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
224                 *IXP4XX_ICMR2 |= (1 << (d->irq - 32));
225         else
226                 *IXP4XX_ICMR |= (1 << d->irq);
227 }
228
229 static struct irq_chip ixp4xx_irq_chip = {
230         .name           = "IXP4xx",
231         .irq_ack        = ixp4xx_irq_ack,
232         .irq_mask       = ixp4xx_irq_mask,
233         .irq_unmask     = ixp4xx_irq_unmask,
234         .irq_set_type   = ixp4xx_set_irq_type,
235 };
236
237 void __init ixp4xx_init_irq(void)
238 {
239         int i = 0;
240
241         /*
242          * ixp4xx does not implement the XScale PWRMODE register
243          * so it must not call cpu_do_idle().
244          */
245         disable_hlt();
246
247         /* Route all sources to IRQ instead of FIQ */
248         *IXP4XX_ICLR = 0x0;
249
250         /* Disable all interrupt */
251         *IXP4XX_ICMR = 0x0; 
252
253         if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
254                 /* Route upper 32 sources to IRQ instead of FIQ */
255                 *IXP4XX_ICLR2 = 0x00;
256
257                 /* Disable upper 32 interrupts */
258                 *IXP4XX_ICMR2 = 0x00;
259         }
260
261         /* Default to all level triggered */
262         for(i = 0; i < NR_IRQS; i++) {
263                 irq_set_chip_and_handler(i, &ixp4xx_irq_chip,
264                                          handle_level_irq);
265                 set_irq_flags(i, IRQF_VALID);
266         }
267 }
268
269
270 /*************************************************************************
271  * IXP4xx timer tick
272  * We use OS timer1 on the CPU for the timer tick and the timestamp 
273  * counter as a source of real clock ticks to account for missed jiffies.
274  *************************************************************************/
275
276 static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
277 {
278         struct clock_event_device *evt = dev_id;
279
280         /* Clear Pending Interrupt by writing '1' to it */
281         *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
282
283         evt->event_handler(evt);
284
285         return IRQ_HANDLED;
286 }
287
288 static struct irqaction ixp4xx_timer_irq = {
289         .name           = "timer1",
290         .flags          = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
291         .handler        = ixp4xx_timer_interrupt,
292         .dev_id         = &clockevent_ixp4xx,
293 };
294
295 void __init ixp4xx_timer_init(void)
296 {
297         /* Reset/disable counter */
298         *IXP4XX_OSRT1 = 0;
299
300         /* Clear Pending Interrupt by writing '1' to it */
301         *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
302
303         /* Reset time-stamp counter */
304         *IXP4XX_OSTS = 0;
305
306         /* Connect the interrupt handler and enable the interrupt */
307         setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
308
309         ixp4xx_clocksource_init();
310         ixp4xx_clockevent_init();
311 }
312
313 struct sys_timer ixp4xx_timer = {
314         .init           = ixp4xx_timer_init,
315 };
316
317 static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
318
319 void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
320 {
321         memcpy(&ixp4xx_udc_info, info, sizeof *info);
322 }
323
324 static struct resource ixp4xx_udc_resources[] = {
325         [0] = {
326                 .start  = 0xc800b000,
327                 .end    = 0xc800bfff,
328                 .flags  = IORESOURCE_MEM,
329         },
330         [1] = {
331                 .start  = IRQ_IXP4XX_USB,
332                 .end    = IRQ_IXP4XX_USB,
333                 .flags  = IORESOURCE_IRQ,
334         },
335 };
336
337 /*
338  * USB device controller. The IXP4xx uses the same controller as PXA25X,
339  * so we just use the same device.
340  */
341 static struct platform_device ixp4xx_udc_device = {
342         .name           = "pxa25x-udc",
343         .id             = -1,
344         .num_resources  = 2,
345         .resource       = ixp4xx_udc_resources,
346         .dev            = {
347                 .platform_data = &ixp4xx_udc_info,
348         },
349 };
350
351 static struct platform_device *ixp4xx_devices[] __initdata = {
352         &ixp4xx_udc_device,
353 };
354
355 static struct resource ixp46x_i2c_resources[] = {
356         [0] = {
357                 .start  = 0xc8011000,
358                 .end    = 0xc801101c,
359                 .flags  = IORESOURCE_MEM,
360         },
361         [1] = {
362                 .start  = IRQ_IXP4XX_I2C,
363                 .end    = IRQ_IXP4XX_I2C,
364                 .flags  = IORESOURCE_IRQ
365         }
366 };
367
368 /*
369  * I2C controller. The IXP46x uses the same block as the IOP3xx, so
370  * we just use the same device name.
371  */
372 static struct platform_device ixp46x_i2c_controller = {
373         .name           = "IOP3xx-I2C",
374         .id             = 0,
375         .num_resources  = 2,
376         .resource       = ixp46x_i2c_resources
377 };
378
379 static struct platform_device *ixp46x_devices[] __initdata = {
380         &ixp46x_i2c_controller
381 };
382
383 unsigned long ixp4xx_exp_bus_size;
384 EXPORT_SYMBOL(ixp4xx_exp_bus_size);
385
386 void __init ixp4xx_sys_init(void)
387 {
388         ixp4xx_exp_bus_size = SZ_16M;
389
390         platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
391
392         if (cpu_is_ixp46x()) {
393                 int region;
394
395                 platform_add_devices(ixp46x_devices,
396                                 ARRAY_SIZE(ixp46x_devices));
397
398                 for (region = 0; region < 7; region++) {
399                         if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
400                                 ixp4xx_exp_bus_size = SZ_32M;
401                                 break;
402                         }
403                 }
404         }
405
406         printk("IXP4xx: Using %luMiB expansion bus window size\n",
407                         ixp4xx_exp_bus_size >> 20);
408 }
409
410 /*
411  * sched_clock()
412  */
413 static u32 notrace ixp4xx_read_sched_clock(void)
414 {
415         return *IXP4XX_OSTS;
416 }
417
418 /*
419  * clocksource
420  */
421
422 static cycle_t ixp4xx_clocksource_read(struct clocksource *c)
423 {
424         return *IXP4XX_OSTS;
425 }
426
427 unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ;
428 EXPORT_SYMBOL(ixp4xx_timer_freq);
429 static void __init ixp4xx_clocksource_init(void)
430 {
431         setup_sched_clock(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq);
432
433         clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32,
434                         ixp4xx_clocksource_read);
435 }
436
437 /*
438  * clockevents
439  */
440 static int ixp4xx_set_next_event(unsigned long evt,
441                                  struct clock_event_device *unused)
442 {
443         unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
444
445         *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
446
447         return 0;
448 }
449
450 static void ixp4xx_set_mode(enum clock_event_mode mode,
451                             struct clock_event_device *evt)
452 {
453         unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
454         unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
455
456         switch (mode) {
457         case CLOCK_EVT_MODE_PERIODIC:
458                 osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK;
459                 opts = IXP4XX_OST_ENABLE;
460                 break;
461         case CLOCK_EVT_MODE_ONESHOT:
462                 /* period set by 'set next_event' */
463                 osrt = 0;
464                 opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
465                 break;
466         case CLOCK_EVT_MODE_SHUTDOWN:
467                 opts &= ~IXP4XX_OST_ENABLE;
468                 break;
469         case CLOCK_EVT_MODE_RESUME:
470                 opts |= IXP4XX_OST_ENABLE;
471                 break;
472         case CLOCK_EVT_MODE_UNUSED:
473         default:
474                 osrt = opts = 0;
475                 break;
476         }
477
478         *IXP4XX_OSRT1 = osrt | opts;
479 }
480
481 static struct clock_event_device clockevent_ixp4xx = {
482         .name           = "ixp4xx timer1",
483         .features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
484         .rating         = 200,
485         .shift          = 24,
486         .set_mode       = ixp4xx_set_mode,
487         .set_next_event = ixp4xx_set_next_event,
488 };
489
490 static void __init ixp4xx_clockevent_init(void)
491 {
492         clockevent_ixp4xx.mult = div_sc(IXP4XX_TIMER_FREQ, NSEC_PER_SEC,
493                                         clockevent_ixp4xx.shift);
494         clockevent_ixp4xx.max_delta_ns =
495                 clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx);
496         clockevent_ixp4xx.min_delta_ns =
497                 clockevent_delta2ns(0xf, &clockevent_ixp4xx);
498         clockevent_ixp4xx.cpumask = cpumask_of(0);
499
500         clockevents_register_device(&clockevent_ixp4xx);
501 }
502
503 void ixp4xx_restart(char mode, const char *cmd)
504 {
505         if ( 1 && mode == 's') {
506                 /* Jump into ROM at address 0 */
507                 soft_restart(0);
508         } else {
509                 /* Use on-chip reset capability */
510
511                 /* set the "key" register to enable access to
512                  * "timer" and "enable" registers
513                  */
514                 *IXP4XX_OSWK = IXP4XX_WDT_KEY;
515
516                 /* write 0 to the timer register for an immediate reset */
517                 *IXP4XX_OSWT = 0;
518
519                 *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE;
520         }
521 }
522
523 #ifdef CONFIG_IXP4XX_INDIRECT_PCI
524 /*
525  * In the case of using indirect PCI, we simply return the actual PCI
526  * address and our read/write implementation use that to drive the
527  * access registers. If something outside of PCI is ioremap'd, we
528  * fallback to the default.
529  */
530
531 static void __iomem *ixp4xx_ioremap_caller(unsigned long addr, size_t size,
532                                            unsigned int mtype, void *caller)
533 {
534         if (!is_pci_memory(addr))
535                 return __arm_ioremap_caller(addr, size, mtype, caller);
536
537         return (void __iomem *)addr;
538 }
539
540 static void ixp4xx_iounmap(void __iomem *addr)
541 {
542         if (!is_pci_memory((__force u32)addr))
543                 __iounmap(addr);
544 }
545
546 void __init ixp4xx_init_early(void)
547 {
548         arch_ioremap_caller = ixp4xx_ioremap_caller;
549         arch_iounmap = ixp4xx_iounmap;
550 }
551 #else
552 void __init ixp4xx_init_early(void) {}
553 #endif