2 * arch/arm/mach-ixp4xx/common.c
4 * Generic code shared across all IXP4XX platforms
6 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
8 * Copyright 2002 (c) Intel Corporation
9 * Copyright 2003-2004 (c) MontaVista, Software, Inc.
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.
16 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/serial.h>
20 #include <linux/sched.h>
21 #include <linux/tty.h>
22 #include <linux/platform_device.h>
23 #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>
30 #include <asm/hardware.h>
31 #include <asm/uaccess.h>
33 #include <asm/pgtable.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/irq.h>
39 #include <asm/mach/time.h>
41 /*************************************************************************
42 * IXP4xx chipset I/O mapping
43 *************************************************************************/
44 static struct map_desc ixp4xx_io_desc[] __initdata = {
45 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
46 .virtual = IXP4XX_PERIPHERAL_BASE_VIRT,
47 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
48 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
50 }, { /* Expansion Bus Config Registers */
51 .virtual = IXP4XX_EXP_CFG_BASE_VIRT,
52 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
53 .length = IXP4XX_EXP_CFG_REGION_SIZE,
55 }, { /* PCI Registers */
56 .virtual = IXP4XX_PCI_CFG_BASE_VIRT,
57 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
58 .length = IXP4XX_PCI_CFG_REGION_SIZE,
61 #ifdef CONFIG_DEBUG_LL
62 { /* Debug UART mapping */
63 .virtual = IXP4XX_DEBUG_UART_BASE_VIRT,
64 .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS),
65 .length = IXP4XX_DEBUG_UART_REGION_SIZE,
71 void __init ixp4xx_map_io(void)
73 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
77 /*************************************************************************
78 * IXP4xx chipset IRQ handling
80 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
81 * (be it PCI or something else) configures that GPIO line
83 **************************************************************************/
84 enum ixp4xx_irq_type {
85 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
88 static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type);
91 * IRQ -> GPIO mapping table
93 static signed char irq2gpio[32] = {
94 -1, -1, -1, -1, -1, -1, 0, 1,
95 -1, -1, -1, -1, -1, -1, -1, -1,
96 -1, -1, -1, 2, 3, 4, 5, 6,
97 7, 8, 9, 10, 11, 12, -1, -1,
100 static int ixp4xx_set_irq_type(unsigned int irq, unsigned int type)
102 int line = irq2gpio[irq];
104 enum ixp4xx_irq_type irq_type;
105 volatile u32 *int_reg;
115 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
116 irq_type = IXP4XX_IRQ_EDGE;
119 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
120 irq_type = IXP4XX_IRQ_EDGE;
123 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
124 irq_type = IXP4XX_IRQ_EDGE;
127 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
128 irq_type = IXP4XX_IRQ_LEVEL;
131 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
132 irq_type = IXP4XX_IRQ_LEVEL;
137 ixp4xx_config_irq(irq, irq_type);
139 if (line >= 8) { /* pins 8-15 */
141 int_reg = IXP4XX_GPIO_GPIT2R;
142 } else { /* pins 0-7 */
143 int_reg = IXP4XX_GPIO_GPIT1R;
146 /* Clear the style for the appropriate pin */
147 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
148 (line * IXP4XX_GPIO_STYLE_SIZE));
150 *IXP4XX_GPIO_GPISR = (1 << line);
152 /* Set the new style */
153 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
155 /* Configure the line as an input */
156 gpio_line_config(line, IXP4XX_GPIO_IN);
161 static void ixp4xx_irq_mask(unsigned int irq)
163 if (cpu_is_ixp46x() && irq >= 32)
164 *IXP4XX_ICMR2 &= ~(1 << (irq - 32));
166 *IXP4XX_ICMR &= ~(1 << irq);
169 static void ixp4xx_irq_unmask(unsigned int irq)
171 if (cpu_is_ixp46x() && irq >= 32)
172 *IXP4XX_ICMR2 |= (1 << (irq - 32));
174 *IXP4XX_ICMR |= (1 << irq);
177 static void ixp4xx_irq_ack(unsigned int irq)
179 int line = (irq < 32) ? irq2gpio[irq] : -1;
182 *IXP4XX_GPIO_GPISR = (1 << line);
186 * Level triggered interrupts on GPIO lines can only be cleared when the
187 * interrupt condition disappears.
189 static void ixp4xx_irq_level_unmask(unsigned int irq)
192 ixp4xx_irq_unmask(irq);
195 static struct irqchip ixp4xx_irq_level_chip = {
196 .ack = ixp4xx_irq_mask,
197 .mask = ixp4xx_irq_mask,
198 .unmask = ixp4xx_irq_level_unmask,
199 .set_type = ixp4xx_set_irq_type,
202 static struct irqchip ixp4xx_irq_edge_chip = {
203 .ack = ixp4xx_irq_ack,
204 .mask = ixp4xx_irq_mask,
205 .unmask = ixp4xx_irq_unmask,
206 .set_type = ixp4xx_set_irq_type,
209 static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type)
212 case IXP4XX_IRQ_LEVEL:
213 set_irq_chip(irq, &ixp4xx_irq_level_chip);
214 set_irq_handler(irq, do_level_IRQ);
216 case IXP4XX_IRQ_EDGE:
217 set_irq_chip(irq, &ixp4xx_irq_edge_chip);
218 set_irq_handler(irq, do_edge_IRQ);
221 set_irq_flags(irq, IRQF_VALID);
224 void __init ixp4xx_init_irq(void)
228 /* Route all sources to IRQ instead of FIQ */
231 /* Disable all interrupt */
234 if (cpu_is_ixp46x()) {
235 /* Route upper 32 sources to IRQ instead of FIQ */
236 *IXP4XX_ICLR2 = 0x00;
238 /* Disable upper 32 interrupts */
239 *IXP4XX_ICMR2 = 0x00;
242 /* Default to all level triggered */
243 for(i = 0; i < NR_IRQS; i++)
244 ixp4xx_config_irq(i, IXP4XX_IRQ_LEVEL);
248 /*************************************************************************
250 * We use OS timer1 on the CPU for the timer tick and the timestamp
251 * counter as a source of real clock ticks to account for missed jiffies.
252 *************************************************************************/
254 static unsigned volatile last_jiffy_time;
256 #define CLOCK_TICKS_PER_USEC ((CLOCK_TICK_RATE + USEC_PER_SEC/2) / USEC_PER_SEC)
258 /* IRQs are disabled before entering here from do_gettimeofday() */
259 static unsigned long ixp4xx_gettimeoffset(void)
263 elapsed = *IXP4XX_OSTS - last_jiffy_time;
265 return elapsed / CLOCK_TICKS_PER_USEC;
268 static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
270 write_seqlock(&xtime_lock);
272 /* Clear Pending Interrupt by writing '1' to it */
273 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
276 * Catch up with the real idea of time
278 while ((signed long)(*IXP4XX_OSTS - last_jiffy_time) >= LATCH) {
280 last_jiffy_time += LATCH;
283 write_sequnlock(&xtime_lock);
288 static struct irqaction ixp4xx_timer_irq = {
289 .name = "IXP4xx Timer Tick",
290 .flags = SA_INTERRUPT | SA_TIMER,
291 .handler = ixp4xx_timer_interrupt,
294 static void __init ixp4xx_timer_init(void)
296 /* Clear Pending Interrupt by writing '1' to it */
297 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
299 /* Setup the Timer counter value */
300 *IXP4XX_OSRT1 = (LATCH & ~IXP4XX_OST_RELOAD_MASK) | IXP4XX_OST_ENABLE;
302 /* Reset time-stamp counter */
306 /* Connect the interrupt handler and enable the interrupt */
307 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
310 struct sys_timer ixp4xx_timer = {
311 .init = ixp4xx_timer_init,
312 .offset = ixp4xx_gettimeoffset,
315 static struct resource ixp46x_i2c_resources[] = {
319 .flags = IORESOURCE_MEM,
322 .start = IRQ_IXP4XX_I2C,
323 .end = IRQ_IXP4XX_I2C,
324 .flags = IORESOURCE_IRQ
329 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
330 * we just use the same device name.
332 static struct platform_device ixp46x_i2c_controller = {
333 .name = "IOP3xx-I2C",
336 .resource = ixp46x_i2c_resources
339 static struct platform_device *ixp46x_devices[] __initdata = {
340 &ixp46x_i2c_controller
343 unsigned long ixp4xx_exp_bus_size;
344 EXPORT_SYMBOL(ixp4xx_exp_bus_size);
346 void __init ixp4xx_sys_init(void)
348 ixp4xx_exp_bus_size = SZ_16M;
350 if (cpu_is_ixp46x()) {
353 platform_add_devices(ixp46x_devices,
354 ARRAY_SIZE(ixp46x_devices));
356 for (region = 0; region < 7; region++) {
357 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
358 ixp4xx_exp_bus_size = SZ_32M;
364 printk("IXP4xx: Using %luMiB expansion bus window size\n",
365 ixp4xx_exp_bus_size >> 20);