Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #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 King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 29 | #include <linux/clocksource.h> |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 30 | #include <linux/clockchips.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 32 | #include <asm/arch/udc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/hardware.h> |
| 34 | #include <asm/uaccess.h> |
| 35 | #include <asm/io.h> |
| 36 | #include <asm/pgtable.h> |
| 37 | #include <asm/page.h> |
| 38 | #include <asm/irq.h> |
| 39 | |
| 40 | #include <asm/mach/map.h> |
| 41 | #include <asm/mach/irq.h> |
| 42 | #include <asm/mach/time.h> |
| 43 | |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 44 | static int __init ixp4xx_clocksource_init(void); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 45 | static int __init ixp4xx_clockevent_init(void); |
| 46 | static struct clock_event_device clockevent_ixp4xx; |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /************************************************************************* |
| 49 | * IXP4xx chipset I/O mapping |
| 50 | *************************************************************************/ |
| 51 | static struct map_desc ixp4xx_io_desc[] __initdata = { |
| 52 | { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */ |
| 53 | .virtual = IXP4XX_PERIPHERAL_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 54 | .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | .length = IXP4XX_PERIPHERAL_REGION_SIZE, |
| 56 | .type = MT_DEVICE |
| 57 | }, { /* Expansion Bus Config Registers */ |
| 58 | .virtual = IXP4XX_EXP_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 59 | .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | .length = IXP4XX_EXP_CFG_REGION_SIZE, |
| 61 | .type = MT_DEVICE |
| 62 | }, { /* PCI Registers */ |
| 63 | .virtual = IXP4XX_PCI_CFG_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 64 | .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | .length = IXP4XX_PCI_CFG_REGION_SIZE, |
| 66 | .type = MT_DEVICE |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 67 | }, |
| 68 | #ifdef CONFIG_DEBUG_LL |
| 69 | { /* Debug UART mapping */ |
| 70 | .virtual = IXP4XX_DEBUG_UART_BASE_VIRT, |
Deepak Saxena | 87fe04b | 2005-10-28 15:18:59 +0100 | [diff] [blame] | 71 | .pfn = __phys_to_pfn(IXP4XX_DEBUG_UART_BASE_PHYS), |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 72 | .length = IXP4XX_DEBUG_UART_REGION_SIZE, |
| 73 | .type = MT_DEVICE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
Deepak Saxena | 5932ae3 | 2005-06-24 20:54:35 +0100 | [diff] [blame] | 75 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | **************************************************************************/ |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 91 | enum ixp4xx_irq_type { |
| 92 | IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE |
| 93 | }; |
| 94 | |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 95 | /* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */ |
| 96 | static unsigned long long ixp4xx_irq_edge = 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * IRQ -> GPIO mapping table |
| 100 | */ |
Lennert Buytenhek | 6cc1b65 | 2006-04-20 21:24:38 +0100 | [diff] [blame] | 101 | static signed char irq2gpio[32] = { |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 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_set_irq_type(unsigned int irq, unsigned int type) |
| 109 | { |
| 110 | int line = irq2gpio[irq]; |
| 111 | u32 int_style; |
| 112 | enum ixp4xx_irq_type irq_type; |
| 113 | volatile u32 *int_reg; |
| 114 | |
| 115 | /* |
| 116 | * Only for GPIO IRQs |
| 117 | */ |
| 118 | if (line < 0) |
| 119 | return -EINVAL; |
| 120 | |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 121 | switch (type){ |
| 122 | case IRQT_BOTHEDGE: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 123 | int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL; |
| 124 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 125 | break; |
| 126 | case IRQT_RISING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 127 | int_style = IXP4XX_GPIO_STYLE_RISING_EDGE; |
| 128 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 129 | break; |
| 130 | case IRQT_FALLING: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 131 | int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE; |
| 132 | irq_type = IXP4XX_IRQ_EDGE; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 133 | break; |
| 134 | case IRQT_HIGH: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 135 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; |
| 136 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 137 | break; |
| 138 | case IRQT_LOW: |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 139 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW; |
| 140 | irq_type = IXP4XX_IRQ_LEVEL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 141 | break; |
| 142 | default: |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 143 | return -EINVAL; |
Mårten Wikström | 06e4479 | 2006-02-22 22:27:23 +0000 | [diff] [blame] | 144 | } |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 145 | |
| 146 | if (irq_type == IXP4XX_IRQ_EDGE) |
| 147 | ixp4xx_irq_edge |= (1 << irq); |
| 148 | else |
| 149 | ixp4xx_irq_edge &= ~(1 << irq); |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 150 | |
| 151 | if (line >= 8) { /* pins 8-15 */ |
| 152 | line -= 8; |
| 153 | int_reg = IXP4XX_GPIO_GPIT2R; |
| 154 | } else { /* pins 0-7 */ |
| 155 | int_reg = IXP4XX_GPIO_GPIT1R; |
| 156 | } |
| 157 | |
| 158 | /* Clear the style for the appropriate pin */ |
| 159 | *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR << |
| 160 | (line * IXP4XX_GPIO_STYLE_SIZE)); |
| 161 | |
Deepak Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 162 | *IXP4XX_GPIO_GPISR = (1 << line); |
| 163 | |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 164 | /* Set the new style */ |
| 165 | *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 166 | |
Alessandro Zummo | 73deb7d | 2006-03-20 17:10:12 +0000 | [diff] [blame] | 167 | /* Configure the line as an input */ |
| 168 | gpio_line_config(line, IXP4XX_GPIO_IN); |
| 169 | |
David Vrabel | 6132f9e | 2005-09-26 19:52:56 +0100 | [diff] [blame] | 170 | return 0; |
Deepak Saxena | bdf82b5 | 2005-08-29 22:46:30 +0100 | [diff] [blame] | 171 | } |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | static void ixp4xx_irq_mask(unsigned int irq) |
| 174 | { |
| 175 | if (cpu_is_ixp46x() && irq >= 32) |
| 176 | *IXP4XX_ICMR2 &= ~(1 << (irq - 32)); |
| 177 | else |
| 178 | *IXP4XX_ICMR &= ~(1 << irq); |
| 179 | } |
| 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | static void ixp4xx_irq_ack(unsigned int irq) |
| 182 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | int line = (irq < 32) ? irq2gpio[irq] : -1; |
| 184 | |
| 185 | if (line >= 0) |
Deepak Saxena | f7e8bbb8 | 2006-01-04 17:17:10 +0000 | [diff] [blame] | 186 | *IXP4XX_GPIO_GPISR = (1 << line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | /* |
| 190 | * Level triggered interrupts on GPIO lines can only be cleared when the |
| 191 | * interrupt condition disappears. |
| 192 | */ |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 193 | static void ixp4xx_irq_unmask(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 195 | if (!(ixp4xx_irq_edge & (1 << irq))) |
| 196 | ixp4xx_irq_ack(irq); |
| 197 | |
| 198 | if (cpu_is_ixp46x() && irq >= 32) |
| 199 | *IXP4XX_ICMR2 |= (1 << (irq - 32)); |
| 200 | else |
| 201 | *IXP4XX_ICMR |= (1 << irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 204 | static struct irq_chip ixp4xx_irq_chip = { |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 205 | .name = "IXP4xx", |
Russell King | 2be863c | 2005-09-06 23:13:17 +0100 | [diff] [blame] | 206 | .ack = ixp4xx_irq_ack, |
| 207 | .mask = ixp4xx_irq_mask, |
| 208 | .unmask = ixp4xx_irq_unmask, |
| 209 | .set_type = ixp4xx_set_irq_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | }; |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | void __init ixp4xx_init_irq(void) |
| 213 | { |
| 214 | int i = 0; |
| 215 | |
| 216 | /* Route all sources to IRQ instead of FIQ */ |
| 217 | *IXP4XX_ICLR = 0x0; |
| 218 | |
| 219 | /* Disable all interrupt */ |
| 220 | *IXP4XX_ICMR = 0x0; |
| 221 | |
| 222 | if (cpu_is_ixp46x()) { |
| 223 | /* Route upper 32 sources to IRQ instead of FIQ */ |
| 224 | *IXP4XX_ICLR2 = 0x00; |
| 225 | |
| 226 | /* Disable upper 32 interrupts */ |
| 227 | *IXP4XX_ICMR2 = 0x00; |
| 228 | } |
| 229 | |
| 230 | /* Default to all level triggered */ |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 231 | for(i = 0; i < NR_IRQS; i++) { |
| 232 | set_irq_chip(i, &ixp4xx_irq_chip); |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 233 | set_irq_handler(i, handle_level_irq); |
Kevin Hilman | 984d115 | 2006-11-03 01:47:20 +0100 | [diff] [blame] | 234 | set_irq_flags(i, IRQF_VALID); |
| 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | |
| 239 | /************************************************************************* |
| 240 | * IXP4xx timer tick |
| 241 | * We use OS timer1 on the CPU for the timer tick and the timestamp |
| 242 | * counter as a source of real clock ticks to account for missed jiffies. |
| 243 | *************************************************************************/ |
| 244 | |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 245 | static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 247 | struct clock_event_device *evt = &clockevent_ixp4xx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | /* Clear Pending Interrupt by writing '1' to it */ |
| 250 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 251 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 252 | evt->event_handler(evt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | return IRQ_HANDLED; |
| 255 | } |
| 256 | |
| 257 | static struct irqaction ixp4xx_timer_irq = { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 258 | .name = "timer1", |
Thomas Gleixner | 52e405e | 2006-07-03 02:20:05 +0200 | [diff] [blame] | 259 | .flags = IRQF_DISABLED | IRQF_TIMER, |
Russell King | 09b8b5f | 2005-06-26 17:06:36 +0100 | [diff] [blame] | 260 | .handler = ixp4xx_timer_interrupt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | static void __init ixp4xx_timer_init(void) |
| 264 | { |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 265 | /* Reset/disable counter */ |
| 266 | *IXP4XX_OSRT1 = 0; |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | /* Clear Pending Interrupt by writing '1' to it */ |
| 269 | *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND; |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /* Reset time-stamp counter */ |
| 272 | *IXP4XX_OSTS = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | /* Connect the interrupt handler and enable the interrupt */ |
| 275 | setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq); |
Kevin Hilman | f9a8ca1 | 2006-12-06 00:45:07 +0100 | [diff] [blame] | 276 | |
| 277 | ixp4xx_clocksource_init(); |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 278 | ixp4xx_clockevent_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | struct sys_timer ixp4xx_timer = { |
| 282 | .init = ixp4xx_timer_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | }; |
| 284 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 285 | static struct pxa2xx_udc_mach_info ixp4xx_udc_info; |
| 286 | |
| 287 | void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info) |
| 288 | { |
| 289 | memcpy(&ixp4xx_udc_info, info, sizeof *info); |
| 290 | } |
| 291 | |
| 292 | static struct resource ixp4xx_udc_resources[] = { |
| 293 | [0] = { |
| 294 | .start = 0xc800b000, |
| 295 | .end = 0xc800bfff, |
| 296 | .flags = IORESOURCE_MEM, |
| 297 | }, |
| 298 | [1] = { |
| 299 | .start = IRQ_IXP4XX_USB, |
| 300 | .end = IRQ_IXP4XX_USB, |
| 301 | .flags = IORESOURCE_IRQ, |
| 302 | }, |
| 303 | }; |
| 304 | |
| 305 | /* |
| 306 | * USB device controller. The IXP4xx uses the same controller as PXA2XX, |
| 307 | * so we just use the same device. |
| 308 | */ |
| 309 | static struct platform_device ixp4xx_udc_device = { |
| 310 | .name = "pxa2xx-udc", |
| 311 | .id = -1, |
| 312 | .num_resources = 2, |
| 313 | .resource = ixp4xx_udc_resources, |
| 314 | .dev = { |
| 315 | .platform_data = &ixp4xx_udc_info, |
| 316 | }, |
| 317 | }; |
| 318 | |
| 319 | static struct platform_device *ixp4xx_devices[] __initdata = { |
| 320 | &ixp4xx_udc_device, |
| 321 | }; |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | static struct resource ixp46x_i2c_resources[] = { |
| 324 | [0] = { |
| 325 | .start = 0xc8011000, |
| 326 | .end = 0xc801101c, |
| 327 | .flags = IORESOURCE_MEM, |
| 328 | }, |
| 329 | [1] = { |
| 330 | .start = IRQ_IXP4XX_I2C, |
| 331 | .end = IRQ_IXP4XX_I2C, |
| 332 | .flags = IORESOURCE_IRQ |
| 333 | } |
| 334 | }; |
| 335 | |
| 336 | /* |
| 337 | * I2C controller. The IXP46x uses the same block as the IOP3xx, so |
| 338 | * we just use the same device name. |
| 339 | */ |
| 340 | static struct platform_device ixp46x_i2c_controller = { |
| 341 | .name = "IOP3xx-I2C", |
| 342 | .id = 0, |
| 343 | .num_resources = 2, |
| 344 | .resource = ixp46x_i2c_resources |
| 345 | }; |
| 346 | |
| 347 | static struct platform_device *ixp46x_devices[] __initdata = { |
| 348 | &ixp46x_i2c_controller |
| 349 | }; |
| 350 | |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 351 | unsigned long ixp4xx_exp_bus_size; |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 352 | EXPORT_SYMBOL(ixp4xx_exp_bus_size); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | void __init ixp4xx_sys_init(void) |
| 355 | { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 356 | ixp4xx_exp_bus_size = SZ_16M; |
| 357 | |
Milan Svoboda | e520a36 | 2006-12-01 11:36:41 +0100 | [diff] [blame] | 358 | platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices)); |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (cpu_is_ixp46x()) { |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 361 | int region; |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | platform_add_devices(ixp46x_devices, |
| 364 | ARRAY_SIZE(ixp46x_devices)); |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 365 | |
| 366 | for (region = 0; region < 7; region++) { |
| 367 | if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) { |
| 368 | ixp4xx_exp_bus_size = SZ_32M; |
| 369 | break; |
| 370 | } |
| 371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 373 | |
David Vrabel | 1e74c89 | 2006-01-18 22:46:43 +0000 | [diff] [blame] | 374 | printk("IXP4xx: Using %luMiB expansion bus window size\n", |
Deepak Saxena | 54e269e | 2006-01-05 20:59:29 +0000 | [diff] [blame] | 375 | ixp4xx_exp_bus_size >> 20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 378 | /* |
| 379 | * clocksource |
| 380 | */ |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 381 | cycle_t ixp4xx_get_cycles(void) |
| 382 | { |
| 383 | return *IXP4XX_OSTS; |
| 384 | } |
| 385 | |
| 386 | static struct clocksource clocksource_ixp4xx = { |
| 387 | .name = "OSTS", |
| 388 | .rating = 200, |
| 389 | .read = ixp4xx_get_cycles, |
| 390 | .mask = CLOCKSOURCE_MASK(32), |
| 391 | .shift = 20, |
Thomas Gleixner | c66699a | 2007-02-16 01:27:37 -0800 | [diff] [blame] | 392 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Kevin Hilman | 84904d0 | 2006-09-22 00:58:57 +0100 | [diff] [blame] | 393 | }; |
| 394 | |
| 395 | unsigned long ixp4xx_timer_freq = FREQ; |
| 396 | static int __init ixp4xx_clocksource_init(void) |
| 397 | { |
| 398 | clocksource_ixp4xx.mult = |
| 399 | clocksource_hz2mult(ixp4xx_timer_freq, |
| 400 | clocksource_ixp4xx.shift); |
| 401 | clocksource_register(&clocksource_ixp4xx); |
| 402 | |
| 403 | return 0; |
| 404 | } |
Kevin Hilman | e32f150 | 2007-03-08 20:23:59 +0100 | [diff] [blame^] | 405 | |
| 406 | /* |
| 407 | * clockevents |
| 408 | */ |
| 409 | static int ixp4xx_set_next_event(unsigned long evt, |
| 410 | struct clock_event_device *unused) |
| 411 | { |
| 412 | unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK; |
| 413 | |
| 414 | *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts; |
| 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | static void ixp4xx_set_mode(enum clock_event_mode mode, |
| 420 | struct clock_event_device *evt) |
| 421 | { |
| 422 | unsigned long opts, osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK; |
| 423 | |
| 424 | switch (mode) { |
| 425 | case CLOCK_EVT_MODE_PERIODIC: |
| 426 | osrt = LATCH & ~IXP4XX_OST_RELOAD_MASK; |
| 427 | opts = IXP4XX_OST_ENABLE; |
| 428 | break; |
| 429 | case CLOCK_EVT_MODE_ONESHOT: |
| 430 | /* period set by 'set next_event' */ |
| 431 | osrt = 0; |
| 432 | opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT; |
| 433 | break; |
| 434 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 435 | case CLOCK_EVT_MODE_UNUSED: |
| 436 | default: |
| 437 | osrt = opts = 0; |
| 438 | break; |
| 439 | } |
| 440 | |
| 441 | *IXP4XX_OSRT1 = osrt | opts; |
| 442 | } |
| 443 | |
| 444 | static struct clock_event_device clockevent_ixp4xx = { |
| 445 | .name = "ixp4xx timer1", |
| 446 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 447 | .rating = 200, |
| 448 | .shift = 24, |
| 449 | .set_mode = ixp4xx_set_mode, |
| 450 | .set_next_event = ixp4xx_set_next_event, |
| 451 | }; |
| 452 | |
| 453 | static int __init ixp4xx_clockevent_init(void) |
| 454 | { |
| 455 | clockevent_ixp4xx.mult = div_sc(FREQ, NSEC_PER_SEC, |
| 456 | clockevent_ixp4xx.shift); |
| 457 | clockevent_ixp4xx.max_delta_ns = |
| 458 | clockevent_delta2ns(0xfffffffe, &clockevent_ixp4xx); |
| 459 | clockevent_ixp4xx.min_delta_ns = |
| 460 | clockevent_delta2ns(0xf, &clockevent_ixp4xx); |
| 461 | clockevent_ixp4xx.cpumask = cpumask_of_cpu(0); |
| 462 | |
| 463 | clockevents_register_device(&clockevent_ixp4xx); |
| 464 | return 0; |
| 465 | } |