/* * linux/arch/arm/mach-omap1/board-innovator.c * * Board specific inits for OMAP-1510 and OMAP-1610 Innovator * * Copyright (C) 2001 RidgeRun, Inc. * Author: Greg Lonnon * * Copyright (C) 2002 MontaVista Software, Inc. * * Separated FPGA interrupts from innovator1510.c and cleaned up for 2.6 * Copyright (C) 2004 Nokia Corporation by Tony Lindrgen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "iomap.h" #include "common.h" #include "mmc.h" /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ #define INNOVATOR1610_ETHR_START 0x04000300 static const unsigned int innovator_keymap[] = { KEY(0, 0, KEY_F1), KEY(3, 0, KEY_DOWN), KEY(1, 1, KEY_F2), KEY(2, 1, KEY_RIGHT), KEY(0, 2, KEY_F3), KEY(1, 2, KEY_F4), KEY(2, 2, KEY_UP), KEY(2, 3, KEY_ENTER), KEY(3, 3, KEY_LEFT), }; static struct mtd_partition innovator_partitions[] = { /* bootloader (U-Boot, etc) in first sector */ { .name = "bootloader", .offset = 0, .size = SZ_128K, .mask_flags = MTD_WRITEABLE, /* force read-only */ }, /* bootloader params in the next sector */ { .name = "params", .offset = MTDPART_OFS_APPEND, .size = SZ_128K, .mask_flags = 0, }, /* kernel */ { .name = "kernel", .offset = MTDPART_OFS_APPEND, .size = SZ_2M, .mask_flags = 0 }, /* rest of flash1 is a file system */ { .name = "rootfs", .offset = MTDPART_OFS_APPEND, .size = SZ_16M - SZ_2M - 2 * SZ_128K, .mask_flags = 0 }, /* file system */ { .name = "filesystem", .offset = MTDPART_OFS_APPEND, .size = MTDPART_SIZ_FULL, .mask_flags = 0 } }; static struct physmap_flash_data innovator_flash_data = { .width = 2, .set_vpp = omap1_set_vpp, .parts = innovator_partitions, .nr_parts = ARRAY_SIZE(innovator_partitions), }; static struct resource innovator_flash_resource = { .start = OMAP_CS0_PHYS, .end = OMAP_CS0_PHYS + SZ_32M - 1, .flags = IORESOURCE_MEM, }; static struct platform_device innovator_flash_device = { .name = "physmap-flash", .id = 0, .dev = { .platform_data = &innovator_flash_data, }, .num_resources = 1, .resource = &innovator_flash_resource, }; static struct resource innovator_kp_resources[] = { [0] = { .start = INT_KEYBOARD, .end = INT_KEYBOARD, .flags = IORESOURCE_IRQ,