|
@@ -0,0 +1,126 @@
|
|
|
+/*
|
|
|
+ * 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 <glonnon@ridgerun.com>
|
|
|
+ *
|
|
|
+ * 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 <tony@atomide.com>
|
|
|
+ *
|
|
|
+ * 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 <linux/gpio.h>
|
|
|
+#include <linux/kernel.h>
|
|
|
+#include <linux/init.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
+#include <linux/delay.h>
|
|
|
+#include <linux/mtd/mtd.h>
|
|
|
+#include <linux/mtd/partitions.h>
|
|
|
+#include <linux/mtd/physmap.h>
|
|
|
+#include <linux/input.h>
|
|
|
+#include <linux/smc91x.h>
|
|
|
+#include <linux/omapfb.h>
|
|
|
+
|
|
|
+#include <asm/mach-types.h>
|
|
|
+#include <asm/mach/arch.h>
|
|
|
+#include <asm/mach/map.h>
|
|
|
+
|
|
|
+#include <mach/mux.h>
|
|
|
+#include <mach/flash.h>
|
|
|
+#include <mach/tc.h>
|
|
|
+#include <linux/platform_data/keypad-omap.h>
|
|
|
+
|
|
|
+#include <mach/hardware.h>
|
|
|
+#include <mach/usb.h>
|
|
|
+
|
|
|
+#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,
|