|
@@ -0,0 +1,56 @@
|
|
|
+/*
|
|
|
+ * linux/arch/arm/mach-omap1/board-h3.c
|
|
|
+ *
|
|
|
+ * This file contains OMAP1710 H3 specific code.
|
|
|
+ *
|
|
|
+ * Copyright (C) 2004 Texas Instruments, Inc.
|
|
|
+ * Copyright (C) 2002 MontaVista Software, Inc.
|
|
|
+ * Copyright (C) 2001 RidgeRun, Inc.
|
|
|
+ * Author: RidgeRun, Inc.
|
|
|
+ * Greg Lonnon (glonnon@ridgerun.com) or info@ridgerun.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/types.h>
|
|
|
+#include <linux/init.h>
|
|
|
+#include <linux/major.h>
|
|
|
+#include <linux/kernel.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
+#include <linux/errno.h>
|
|
|
+#include <linux/workqueue.h>
|
|
|
+#include <linux/i2c.h>
|
|
|
+#include <linux/mtd/mtd.h>
|
|
|
+#include <linux/mtd/nand.h>
|
|
|
+#include <linux/mtd/partitions.h>
|
|
|
+#include <linux/mtd/physmap.h>
|
|
|
+#include <linux/input.h>
|
|
|
+#include <linux/spi/spi.h>
|
|
|
+#include <linux/i2c/tps65010.h>
|
|
|
+#include <linux/smc91x.h>
|
|
|
+#include <linux/omapfb.h>
|
|
|
+#include <linux/platform_data/gpio-omap.h>
|
|
|
+#include <linux/leds.h>
|
|
|
+
|
|
|
+#include <asm/setup.h>
|
|
|
+#include <asm/page.h>
|
|
|
+#include <asm/mach-types.h>
|
|
|
+#include <asm/mach/arch.h>
|
|
|
+#include <asm/mach/map.h>
|
|
|
+
|
|
|
+#include <mach/mux.h>
|
|
|
+#include <mach/tc.h>
|
|
|
+#include <linux/platform_data/keypad-omap.h>
|
|
|
+#include <linux/omap-dma.h>
|
|
|
+#include <mach/flash.h>
|
|
|
+
|
|
|
+#include <mach/hardware.h>
|
|
|
+#include <mach/irqs.h>
|
|
|
+#include <mach/usb.h>
|
|
|
+
|
|
|
+#include "common.h"
|
|
|
+#include "board-h3.h"
|
|
|
+
|
|
|
+/* In OMAP1710 H3 the Ethernet is directly connected to CS1 */
|