blob: c7513f6eb50c3640e8e9562a72cd9163d1bfd276 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/init.h>
19#include <linux/serial.h>
20#include <linux/sched.h>
21#include <linux/tty.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/serial_core.h>
24#include <linux/bootmem.h>
25#include <linux/interrupt.h>
26#include <linux/bitops.h>
27#include <linux/time.h>
28#include <linux/timex.h>
Kevin Hilman84904d02006-09-22 00:58:57 +010029#include <linux/clocksource.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/hardware.h>
32#include <asm/uaccess.h>
33#include <asm/io.h>
34#include <asm/pgtable.h>
35#include <asm/page.h>
36#include <asm/irq.h>
37
38#include <asm/mach/map.h>
39#include <asm/mach/irq.h>
40#include <asm/mach/time.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*************************************************************************
43 * IXP4xx chipset I/O mapping
44 *************************************************************************/
45static struct map_desc ixp4xx_io_desc[] __initdata = {
46 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
47 .virtual = IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010048 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
50 .type = MT_DEVICE
51 }, { /* Expansion Bus Config Registers */
52 .virtual = IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010053 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .length = IXP4XX_EXP_CFG_REGION_SIZE,
55 .type = MT_DEVICE
56 }, { /* PCI Registers */
57 .virtual = IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010058 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .length = IXP4XX_PCI_CFG_REGION_SIZE,
60 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010061 },
62#ifdef CONFIG_DEBUG_LL
63 { /* Debug UART mapping */
64 .virtual = IXP4XX_DEBUG_UART_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010065 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
Deepak Saxena5932ae32005-06-24 20:54:35 +010066 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
67 .type = MT_DEVICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
Deepak Saxena5932ae32005-06-24 20:54:35 +010069#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
72void __init ixp4xx_map_io(void)
73{
74 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
75}
76
77
78/*************************************************************************
79 * IXP4xx chipset IRQ handling
80 *
81 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
82 * (be it PCI or something else) configures that GPIO line
83 * as an IRQ.
84 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +010085enum ixp4xx_irq_type {
86 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
87};
88
89static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type);
90
91/*
92 * IRQ -> GPIO mapping table
93 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +010094static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +010095 -1, -1, -1, -1, -1, -1, 0, 1,
96 -1, -1, -1, -1, -1, -1, -1, -1,
97 -1, -1, -1, 2, 3, 4, 5, 6,
98 7, 8, 9, 10, 11, 12, -1, -1,
99};
100
101static int ixp4xx_set_irq_type(unsigned int irq, unsigned int type)
102{
103 int line = irq2gpio[irq];
104 u32 int_style;
105 enum ixp4xx_irq_type irq_type;
106 volatile u32 *int_reg;
107
108 /*
109 * Only for GPIO IRQs
110 */
111 if (line < 0)
112 return -EINVAL;
113
Mårten Wikström06e44792006-02-22 22:27:23 +0000114 switch (type){
115 case IRQT_BOTHEDGE:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100116 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
117 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000118 break;
119 case IRQT_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100120 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
121 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000122 break;
123 case IRQT_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100124 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
125 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000126 break;
127 case IRQT_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100128 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
129 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000130 break;
131 case IRQT_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100132 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
133 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000134 break;
135 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100136 return -EINVAL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000137 }
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100138 ixp4xx_config_irq(irq, irq_type);
139
140 if (line >= 8) { /* pins 8-15 */
141 line -= 8;
142 int_reg = IXP4XX_GPIO_GPIT2R;
143 } else { /* pins 0-7 */
144 int_reg = IXP4XX_GPIO_GPIT1R;
145 }
146
147 /* Clear the style for the appropriate pin */
148 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
149 (line * IXP4XX_GPIO_STYLE_SIZE));
150
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000151 *IXP4XX_GPIO_GPISR = (1 << line);
152
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100153 /* Set the new style */
154 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100155
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000156 /* Configure the line as an input */
157 gpio_line_config(line, IXP4XX_GPIO_IN);
158
David Vrabel6132f9e2005-09-26 19:52:56 +0100159 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static void ixp4xx_irq_mask(unsigned int irq)
163{
164 if (cpu_is_ixp46x() && irq >= 32)
165 *IXP4XX_ICMR2 &= ~(1 << (irq - 32));
166 else
167 *IXP4XX_ICMR &= ~(1 << irq);
168}
169
170static void ixp4xx_irq_unmask(unsigned int irq)
171{
172 if (cpu_is_ixp46x() && irq >= 32)
173 *IXP4XX_ICMR2 |= (1 << (irq - 32));
174 else
175 *IXP4XX_ICMR |= (1 << irq);
176}
177
178static void ixp4xx_irq_ack(unsigned int irq)
179{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int line = (irq < 32) ? irq2gpio[irq] : -1;
181
182 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000183 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
187 * Level triggered interrupts on GPIO lines can only be cleared when the
188 * interrupt condition disappears.
189 */
190static void ixp4xx_irq_level_unmask(unsigned int irq)
191{
192 ixp4xx_irq_ack(irq);
193 ixp4xx_irq_unmask(irq);
194}
195
196static struct irqchip ixp4xx_irq_level_chip = {
Russell King2be863c2005-09-06 23:13:17 +0100197 .ack = ixp4xx_irq_mask,
198 .mask = ixp4xx_irq_mask,
199 .unmask = ixp4xx_irq_level_unmask,
200 .set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
203static struct irqchip ixp4xx_irq_edge_chip = {
Russell King2be863c2005-09-06 23:13:17 +0100204 .ack = ixp4xx_irq_ack,
205 .mask = ixp4xx_irq_mask,
206 .unmask = ixp4xx_irq_unmask,
207 .set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
210static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type)
211{
212 switch (type) {
213 case IXP4XX_IRQ_LEVEL:
214 set_irq_chip(irq, &ixp4xx_irq_level_chip);
215 set_irq_handler(irq, do_level_IRQ);
216 break;
217 case IXP4XX_IRQ_EDGE:
218 set_irq_chip(irq, &ixp4xx_irq_edge_chip);
219 set_irq_handler(irq, do_edge_IRQ);
220 break;
221 }
222 set_irq_flags(irq, IRQF_VALID);
223}
224
225void __init ixp4xx_init_irq(void)
226{
227 int i = 0;
228
229 /* Route all sources to IRQ instead of FIQ */
230 *IXP4XX_ICLR = 0x0;
231
232 /* Disable all interrupt */
233 *IXP4XX_ICMR = 0x0;
234
235 if (cpu_is_ixp46x()) {
236 /* Route upper 32 sources to IRQ instead of FIQ */
237 *IXP4XX_ICLR2 = 0x00;
238
239 /* Disable upper 32 interrupts */
240 *IXP4XX_ICMR2 = 0x00;
241 }
242
243 /* Default to all level triggered */
244 for(i = 0; i < NR_IRQS; i++)
245 ixp4xx_config_irq(i, IXP4XX_IRQ_LEVEL);
246}
247
248
249/*************************************************************************
250 * IXP4xx timer tick
251 * We use OS timer1 on the CPU for the timer tick and the timestamp
252 * counter as a source of real clock ticks to account for missed jiffies.
253 *************************************************************************/
254
255static unsigned volatile last_jiffy_time;
256
257#define CLOCK_TICKS_PER_USEC ((CLOCK_TICK_RATE + USEC_PER_SEC/2) / USEC_PER_SEC)
258
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700259static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 write_seqlock(&xtime_lock);
262
263 /* Clear Pending Interrupt by writing '1' to it */
264 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
265
266 /*
267 * Catch up with the real idea of time
268 */
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100269 while ((signed long)(*IXP4XX_OSTS - last_jiffy_time) >= LATCH) {
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700270 timer_tick();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 last_jiffy_time += LATCH;
272 }
273
274 write_sequnlock(&xtime_lock);
275
276 return IRQ_HANDLED;
277}
278
279static struct irqaction ixp4xx_timer_irq = {
280 .name = "IXP4xx Timer Tick",
Thomas Gleixner52e405e2006-07-03 02:20:05 +0200281 .flags = IRQF_DISABLED | IRQF_TIMER,
Russell King09b8b5f2005-06-26 17:06:36 +0100282 .handler = ixp4xx_timer_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284
285static void __init ixp4xx_timer_init(void)
286{
287 /* Clear Pending Interrupt by writing '1' to it */
288 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
289
290 /* Setup the Timer counter value */
291 *IXP4XX_OSRT1 = (LATCH & ~IXP4XX_OST_RELOAD_MASK) | IXP4XX_OST_ENABLE;
292
293 /* Reset time-stamp counter */
294 *IXP4XX_OSTS = 0;
295 last_jiffy_time = 0;
296
297 /* Connect the interrupt handler and enable the interrupt */
298 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
299}
300
301struct sys_timer ixp4xx_timer = {
302 .init = ixp4xx_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
305static struct resource ixp46x_i2c_resources[] = {
306 [0] = {
307 .start = 0xc8011000,
308 .end = 0xc801101c,
309 .flags = IORESOURCE_MEM,
310 },
311 [1] = {
312 .start = IRQ_IXP4XX_I2C,
313 .end = IRQ_IXP4XX_I2C,
314 .flags = IORESOURCE_IRQ
315 }
316};
317
318/*
319 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
320 * we just use the same device name.
321 */
322static struct platform_device ixp46x_i2c_controller = {
323 .name = "IOP3xx-I2C",
324 .id = 0,
325 .num_resources = 2,
326 .resource = ixp46x_i2c_resources
327};
328
329static struct platform_device *ixp46x_devices[] __initdata = {
330 &ixp46x_i2c_controller
331};
332
Deepak Saxena54e269e2006-01-05 20:59:29 +0000333unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000334EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336void __init ixp4xx_sys_init(void)
337{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000338 ixp4xx_exp_bus_size = SZ_16M;
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000341 int region;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 platform_add_devices(ixp46x_devices,
344 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000345
346 for (region = 0; region < 7; region++) {
347 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
348 ixp4xx_exp_bus_size = SZ_32M;
349 break;
350 }
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000353
David Vrabel1e74c892006-01-18 22:46:43 +0000354 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000355 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Kevin Hilman84904d02006-09-22 00:58:57 +0100358cycle_t ixp4xx_get_cycles(void)
359{
360 return *IXP4XX_OSTS;
361}
362
363static struct clocksource clocksource_ixp4xx = {
364 .name = "OSTS",
365 .rating = 200,
366 .read = ixp4xx_get_cycles,
367 .mask = CLOCKSOURCE_MASK(32),
368 .shift = 20,
369 .is_continuous = 1,
370};
371
372unsigned long ixp4xx_timer_freq = FREQ;
373static int __init ixp4xx_clocksource_init(void)
374{
375 clocksource_ixp4xx.mult =
376 clocksource_hz2mult(ixp4xx_timer_freq,
377 clocksource_ixp4xx.shift);
378 clocksource_register(&clocksource_ixp4xx);
379
380 return 0;
381}
382
383device_initcall(ixp4xx_clocksource_init);