Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tony Lindgren | dbdf9ce | 2005-07-10 19:58:11 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap1/board-innovator.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Board specific inits for OMAP-1510 and OMAP-1610 Innovator |
| 5 | * |
| 6 | * Copyright (C) 2001 RidgeRun, Inc. |
| 7 | * Author: Greg Lonnon <glonnon@ridgerun.com> |
| 8 | * |
| 9 | * Copyright (C) 2002 MontaVista Software, Inc. |
| 10 | * |
| 11 | * Separated FPGA interrupts from innovator1510.c and cleaned up for 2.6 |
| 12 | * Copyright (C) 2004 Nokia Corporation by Tony Lindrgen <tony@atomide.com> |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/init.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/delay.h> |
| 23 | #include <linux/mtd/mtd.h> |
| 24 | #include <linux/mtd/partitions.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 25 | #include <linux/input.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | #include <asm/hardware.h> |
| 28 | #include <asm/mach-types.h> |
| 29 | #include <asm/mach/arch.h> |
| 30 | #include <asm/mach/flash.h> |
| 31 | #include <asm/mach/map.h> |
| 32 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 33 | #include <asm/arch/mux.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/arch/fpga.h> |
| 35 | #include <asm/arch/gpio.h> |
| 36 | #include <asm/arch/tc.h> |
| 37 | #include <asm/arch/usb.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 38 | #include <asm/arch/keypad.h> |
Tony Lindgren | d48af15 | 2005-07-10 19:58:17 +0100 | [diff] [blame] | 39 | #include <asm/arch/common.h> |
lamikr | 284185c | 2006-06-26 16:16:08 -0700 | [diff] [blame^] | 40 | #include <asm/arch/mcbsp.h> |
| 41 | #include <asm/arch/omap-alsa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 43 | static int innovator_keymap[] = { |
| 44 | KEY(0, 0, KEY_F1), |
| 45 | KEY(0, 3, KEY_DOWN), |
| 46 | KEY(1, 1, KEY_F2), |
| 47 | KEY(1, 2, KEY_RIGHT), |
| 48 | KEY(2, 0, KEY_F3), |
| 49 | KEY(2, 1, KEY_F4), |
| 50 | KEY(2, 2, KEY_UP), |
| 51 | KEY(3, 2, KEY_ENTER), |
| 52 | KEY(3, 3, KEY_LEFT), |
| 53 | 0 |
| 54 | }; |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static struct mtd_partition innovator_partitions[] = { |
| 57 | /* bootloader (U-Boot, etc) in first sector */ |
| 58 | { |
| 59 | .name = "bootloader", |
| 60 | .offset = 0, |
| 61 | .size = SZ_128K, |
| 62 | .mask_flags = MTD_WRITEABLE, /* force read-only */ |
| 63 | }, |
| 64 | /* bootloader params in the next sector */ |
| 65 | { |
| 66 | .name = "params", |
| 67 | .offset = MTDPART_OFS_APPEND, |
| 68 | .size = SZ_128K, |
| 69 | .mask_flags = 0, |
| 70 | }, |
| 71 | /* kernel */ |
| 72 | { |
| 73 | .name = "kernel", |
| 74 | .offset = MTDPART_OFS_APPEND, |
| 75 | .size = SZ_2M, |
| 76 | .mask_flags = 0 |
| 77 | }, |
| 78 | /* rest of flash1 is a file system */ |
| 79 | { |
| 80 | .name = "rootfs", |
| 81 | .offset = MTDPART_OFS_APPEND, |
| 82 | .size = SZ_16M - SZ_2M - 2 * SZ_128K, |
| 83 | .mask_flags = 0 |
| 84 | }, |
| 85 | /* file system */ |
| 86 | { |
| 87 | .name = "filesystem", |
| 88 | .offset = MTDPART_OFS_APPEND, |
| 89 | .size = MTDPART_SIZ_FULL, |
| 90 | .mask_flags = 0 |
| 91 | } |
| 92 | }; |
| 93 | |
| 94 | static struct flash_platform_data innovator_flash_data = { |
| 95 | .map_name = "cfi_probe", |
| 96 | .width = 2, |
| 97 | .parts = innovator_partitions, |
| 98 | .nr_parts = ARRAY_SIZE(innovator_partitions), |
| 99 | }; |
| 100 | |
| 101 | static struct resource innovator_flash_resource = { |
| 102 | .start = OMAP_CS0_PHYS, |
| 103 | .end = OMAP_CS0_PHYS + SZ_32M - 1, |
| 104 | .flags = IORESOURCE_MEM, |
| 105 | }; |
| 106 | |
| 107 | static struct platform_device innovator_flash_device = { |
| 108 | .name = "omapflash", |
| 109 | .id = 0, |
| 110 | .dev = { |
| 111 | .platform_data = &innovator_flash_data, |
| 112 | }, |
| 113 | .num_resources = 1, |
| 114 | .resource = &innovator_flash_resource, |
| 115 | }; |
| 116 | |
lamikr | 284185c | 2006-06-26 16:16:08 -0700 | [diff] [blame^] | 117 | #define DEFAULT_BITPERSAMPLE 16 |
| 118 | |
| 119 | static struct omap_mcbsp_reg_cfg mcbsp_regs = { |
| 120 | .spcr2 = FREE | FRST | GRST | XRST | XINTM(3), |
| 121 | .spcr1 = RINTM(3) | RRST, |
| 122 | .rcr2 = RPHASE | RFRLEN2(OMAP_MCBSP_WORD_8) | |
| 123 | RWDLEN2(OMAP_MCBSP_WORD_16) | RDATDLY(0), |
| 124 | .rcr1 = RFRLEN1(OMAP_MCBSP_WORD_8) | RWDLEN1(OMAP_MCBSP_WORD_16), |
| 125 | .xcr2 = XPHASE | XFRLEN2(OMAP_MCBSP_WORD_8) | |
| 126 | XWDLEN2(OMAP_MCBSP_WORD_16) | XDATDLY(0) | XFIG, |
| 127 | .xcr1 = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16), |
| 128 | .srgr1 = FWID(DEFAULT_BITPERSAMPLE - 1), |
| 129 | .srgr2 = GSYNC | CLKSP | FSGM | FPER(DEFAULT_BITPERSAMPLE * 2 - 1), |
| 130 | /*.pcr0 = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP,*/ /* mcbsp: master */ |
| 131 | .pcr0 = CLKXP | CLKRP, /* mcbsp: slave */ |
| 132 | }; |
| 133 | |
| 134 | static struct omap_alsa_codec_config alsa_config = { |
| 135 | .name = "OMAP Innovator AIC23", |
| 136 | .mcbsp_regs_alsa = &mcbsp_regs, |
| 137 | .codec_configure_dev = NULL, // aic23_configure, |
| 138 | .codec_set_samplerate = NULL, // aic23_set_samplerate, |
| 139 | .codec_clock_setup = NULL, // aic23_clock_setup, |
| 140 | .codec_clock_on = NULL, // aic23_clock_on, |
| 141 | .codec_clock_off = NULL, // aic23_clock_off, |
| 142 | .get_default_samplerate = NULL, // aic23_get_default_samplerate, |
| 143 | }; |
| 144 | |
| 145 | static struct platform_device innovator_mcbsp1_device = { |
| 146 | .name = "omap_alsa_mcbsp", |
| 147 | .id = 1, |
| 148 | .dev = { |
| 149 | .platform_data = &alsa_config, |
| 150 | }, |
| 151 | }; |
| 152 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 153 | static struct resource innovator_kp_resources[] = { |
| 154 | [0] = { |
| 155 | .start = INT_KEYBOARD, |
| 156 | .end = INT_KEYBOARD, |
| 157 | .flags = IORESOURCE_IRQ, |
| 158 | }, |
| 159 | }; |
| 160 | |
| 161 | static struct omap_kp_platform_data innovator_kp_data = { |
| 162 | .rows = 8, |
| 163 | .cols = 8, |
| 164 | .keymap = innovator_keymap, |
| 165 | }; |
| 166 | |
| 167 | static struct platform_device innovator_kp_device = { |
| 168 | .name = "omap-keypad", |
| 169 | .id = -1, |
| 170 | .dev = { |
| 171 | .platform_data = &innovator_kp_data, |
| 172 | }, |
| 173 | .num_resources = ARRAY_SIZE(innovator_kp_resources), |
| 174 | .resource = innovator_kp_resources, |
| 175 | }; |
| 176 | |
| 177 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 178 | #ifdef CONFIG_ARCH_OMAP15XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | /* Only FPGA needs to be mapped here. All others are done with ioremap */ |
| 181 | static struct map_desc innovator1510_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 182 | { |
| 183 | .virtual = OMAP1510_FPGA_BASE, |
| 184 | .pfn = __phys_to_pfn(OMAP1510_FPGA_START), |
| 185 | .length = OMAP1510_FPGA_SIZE, |
| 186 | .type = MT_DEVICE |
| 187 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | static struct resource innovator1510_smc91x_resources[] = { |
| 191 | [0] = { |
| 192 | .start = OMAP1510_FPGA_ETHR_START, /* Physical */ |
| 193 | .end = OMAP1510_FPGA_ETHR_START + 0xf, |
| 194 | .flags = IORESOURCE_MEM, |
| 195 | }, |
| 196 | [1] = { |
| 197 | .start = OMAP1510_INT_ETHER, |
| 198 | .end = OMAP1510_INT_ETHER, |
| 199 | .flags = IORESOURCE_IRQ, |
| 200 | }, |
| 201 | }; |
| 202 | |
| 203 | static struct platform_device innovator1510_smc91x_device = { |
| 204 | .name = "smc91x", |
| 205 | .id = 0, |
| 206 | .num_resources = ARRAY_SIZE(innovator1510_smc91x_resources), |
| 207 | .resource = innovator1510_smc91x_resources, |
| 208 | }; |
| 209 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 210 | static struct platform_device innovator1510_lcd_device = { |
| 211 | .name = "lcd_inn1510", |
| 212 | .id = -1, |
| 213 | }; |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | static struct platform_device *innovator1510_devices[] __initdata = { |
| 216 | &innovator_flash_device, |
| 217 | &innovator1510_smc91x_device, |
lamikr | 284185c | 2006-06-26 16:16:08 -0700 | [diff] [blame^] | 218 | &innovator_mcbsp1_device, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 219 | &innovator_kp_device, |
| 220 | &innovator1510_lcd_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | }; |
| 222 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 223 | #endif /* CONFIG_ARCH_OMAP15XX */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | #ifdef CONFIG_ARCH_OMAP16XX |
| 226 | |
| 227 | static struct resource innovator1610_smc91x_resources[] = { |
| 228 | [0] = { |
| 229 | .start = INNOVATOR1610_ETHR_START, /* Physical */ |
| 230 | .end = INNOVATOR1610_ETHR_START + 0xf, |
| 231 | .flags = IORESOURCE_MEM, |
| 232 | }, |
| 233 | [1] = { |
| 234 | .start = OMAP_GPIO_IRQ(0), |
| 235 | .end = OMAP_GPIO_IRQ(0), |
| 236 | .flags = IORESOURCE_IRQ, |
| 237 | }, |
| 238 | }; |
| 239 | |
| 240 | static struct platform_device innovator1610_smc91x_device = { |
| 241 | .name = "smc91x", |
| 242 | .id = 0, |
| 243 | .num_resources = ARRAY_SIZE(innovator1610_smc91x_resources), |
| 244 | .resource = innovator1610_smc91x_resources, |
| 245 | }; |
| 246 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 247 | static struct platform_device innovator1610_lcd_device = { |
| 248 | .name = "inn1610_lcd", |
| 249 | .id = -1, |
| 250 | }; |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | static struct platform_device *innovator1610_devices[] __initdata = { |
| 253 | &innovator_flash_device, |
| 254 | &innovator1610_smc91x_device, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 255 | &innovator_kp_device, |
| 256 | &innovator1610_lcd_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | }; |
| 258 | |
| 259 | #endif /* CONFIG_ARCH_OMAP16XX */ |
| 260 | |
| 261 | static void __init innovator_init_smc91x(void) |
| 262 | { |
| 263 | if (cpu_is_omap1510()) { |
| 264 | fpga_write(fpga_read(OMAP1510_FPGA_RST) & ~1, |
| 265 | OMAP1510_FPGA_RST); |
| 266 | udelay(750); |
| 267 | } else { |
| 268 | if ((omap_request_gpio(0)) < 0) { |
| 269 | printk("Error requesting gpio 0 for smc91x irq\n"); |
| 270 | return; |
| 271 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | } |
| 274 | |
| 275 | void innovator_init_irq(void) |
| 276 | { |
Tony Lindgren | 87bd63f | 2006-02-08 22:06:46 +0000 | [diff] [blame] | 277 | omap1_init_common_hw(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | omap_init_irq(); |
| 279 | omap_gpio_init(); |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 280 | #ifdef CONFIG_ARCH_OMAP15XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | if (cpu_is_omap1510()) { |
| 282 | omap1510_fpga_init_irq(); |
| 283 | } |
| 284 | #endif |
| 285 | innovator_init_smc91x(); |
| 286 | } |
| 287 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 288 | #ifdef CONFIG_ARCH_OMAP15XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | static struct omap_usb_config innovator1510_usb_config __initdata = { |
| 290 | /* for bundled non-standard host and peripheral cables */ |
| 291 | .hmc_mode = 4, |
| 292 | |
| 293 | .register_host = 1, |
| 294 | .pins[1] = 6, |
| 295 | .pins[2] = 6, /* Conflicts with UART2 */ |
| 296 | |
| 297 | .register_dev = 1, |
| 298 | .pins[0] = 2, |
| 299 | }; |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 300 | |
| 301 | static struct omap_lcd_config innovator1510_lcd_config __initdata = { |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 302 | .ctrl_name = "internal", |
| 303 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | #endif |
| 305 | |
| 306 | #ifdef CONFIG_ARCH_OMAP16XX |
| 307 | static struct omap_usb_config h2_usb_config __initdata = { |
| 308 | /* usb1 has a Mini-AB port and external isp1301 transceiver */ |
| 309 | .otg = 2, |
| 310 | |
| 311 | #ifdef CONFIG_USB_GADGET_OMAP |
| 312 | .hmc_mode = 19, // 0:host(off) 1:dev|otg 2:disabled |
| 313 | // .hmc_mode = 21, // 0:host(off) 1:dev(loopback) 2:host(loopback) |
| 314 | #elif defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) |
| 315 | /* NONSTANDARD CABLE NEEDED (B-to-Mini-B) */ |
| 316 | .hmc_mode = 20, // 1:dev|otg(off) 1:host 2:disabled |
| 317 | #endif |
| 318 | |
| 319 | .pins[1] = 3, |
| 320 | }; |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 321 | |
| 322 | static struct omap_lcd_config innovator1610_lcd_config __initdata = { |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 323 | .ctrl_name = "internal", |
| 324 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | #endif |
| 326 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 327 | static struct omap_mmc_config innovator_mmc_config __initdata = { |
| 328 | .mmc [0] = { |
| 329 | .enabled = 1, |
| 330 | .wire4 = 1, |
| 331 | .wp_pin = OMAP_MPUIO(3), |
| 332 | .power_pin = -1, /* FPGA F3 UIO42 */ |
| 333 | .switch_pin = -1, /* FPGA F4 UIO43 */ |
| 334 | }, |
| 335 | }; |
| 336 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 337 | static struct omap_uart_config innovator_uart_config __initdata = { |
| 338 | .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)), |
| 339 | }; |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | static struct omap_board_config_kernel innovator_config[] = { |
| 342 | { OMAP_TAG_USB, NULL }, |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 343 | { OMAP_TAG_LCD, NULL }, |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 344 | { OMAP_TAG_MMC, &innovator_mmc_config }, |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 345 | { OMAP_TAG_UART, &innovator_uart_config }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | }; |
| 347 | |
| 348 | static void __init innovator_init(void) |
| 349 | { |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 350 | #ifdef CONFIG_ARCH_OMAP15XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | if (cpu_is_omap1510()) { |
| 352 | platform_add_devices(innovator1510_devices, ARRAY_SIZE(innovator1510_devices)); |
| 353 | } |
| 354 | #endif |
| 355 | #ifdef CONFIG_ARCH_OMAP16XX |
| 356 | if (!cpu_is_omap1510()) { |
| 357 | platform_add_devices(innovator1610_devices, ARRAY_SIZE(innovator1610_devices)); |
| 358 | } |
| 359 | #endif |
| 360 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 361 | #ifdef CONFIG_ARCH_OMAP15XX |
| 362 | if (cpu_is_omap1510()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | innovator_config[0].data = &innovator1510_usb_config; |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 364 | innovator_config[1].data = &innovator1510_lcd_config; |
| 365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | #endif |
| 367 | #ifdef CONFIG_ARCH_OMAP16XX |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 368 | if (cpu_is_omap1610()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | innovator_config[0].data = &h2_usb_config; |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 370 | innovator_config[1].data = &innovator1610_lcd_config; |
| 371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | #endif |
| 373 | omap_board_config = innovator_config; |
| 374 | omap_board_config_size = ARRAY_SIZE(innovator_config); |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 375 | omap_serial_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | static void __init innovator_map_io(void) |
| 379 | { |
Tony Lindgren | 87bd63f | 2006-02-08 22:06:46 +0000 | [diff] [blame] | 380 | omap1_map_common_io(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 382 | #ifdef CONFIG_ARCH_OMAP15XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | if (cpu_is_omap1510()) { |
| 384 | iotable_init(innovator1510_io_desc, ARRAY_SIZE(innovator1510_io_desc)); |
| 385 | udelay(10); /* Delay needed for FPGA */ |
| 386 | |
| 387 | /* Dump the Innovator FPGA rev early - useful info for support. */ |
| 388 | printk("Innovator FPGA Rev %d.%d Board Rev %d\n", |
| 389 | fpga_read(OMAP1510_FPGA_REV_HIGH), |
| 390 | fpga_read(OMAP1510_FPGA_REV_LOW), |
| 391 | fpga_read(OMAP1510_FPGA_BOARD_REV)); |
| 392 | } |
| 393 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 397 | /* Maintainer: MontaVista Software, Inc. */ |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 398 | .phys_io = 0xfff00000, |
| 399 | .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc, |
| 400 | .boot_params = 0x10000100, |
| 401 | .map_io = innovator_map_io, |
| 402 | .init_irq = innovator_init_irq, |
| 403 | .init_machine = innovator_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | .timer = &omap_timer, |
| 405 | MACHINE_END |