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