summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gumstix/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-04 16:23:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-04 16:23:11 +0000
commit6e27be70e131b10e67b75ea033fccbd77c95cf6d (patch)
treef27a219383aa3cd5b9ad8ffdfdb9f0529c18027a /c/src/lib/libbsp/arm/gumstix/include
parent2009-06-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6e27be70e131b10e67b75ea033fccbd77c95cf6d.tar.bz2
2009-06-04 Xi Yang <hiyangxi@gmail.com>
* .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, console/uarts.c, include/bsp.h, include/bspopts.h.in, include/tm27.h, start/start.S, startup/bspstart.c, startup/linkcmds, startup/memmap.c: New files.
Diffstat (limited to 'c/src/lib/libbsp/arm/gumstix/include')
-rwxr-xr-xc/src/lib/libbsp/arm/gumstix/include/bsp.h50
-rw-r--r--c/src/lib/libbsp/arm/gumstix/include/bspopts.h.in16
-rwxr-xr-xc/src/lib/libbsp/arm/gumstix/include/tm27.h32
3 files changed, 98 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/gumstix/include/bsp.h b/c/src/lib/libbsp/arm/gumstix/include/bsp.h
new file mode 100755
index 0000000000..326f87f722
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gumstix/include/bsp.h
@@ -0,0 +1,50 @@
+/*
+ * By Yang Xi <hiyangxi@gmail.com>.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#ifndef _BSP_H
+#define _BSP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <bspopts.h>
+
+#include <rtems.h>
+#include <rtems/console.h>
+#include <rtems/clockdrv.h>
+#include <libchip/serial.h>
+
+/* What is the input clock freq in hertz */
+#define BSP_MAIN_FREQ 3686400 /* 3.6864 MHz */
+#define BSP_SLCK_FREQ 32768 /* 32.768 KHz */
+
+/* What is the last interrupt */
+#define BSP_MAX_INT AT91RM9200_MAX_INT
+
+console_tbl *BSP_get_uart_from_minor(int minor);
+static inline int32_t BSP_get_baud(void) {return 115200;}
+
+/* How many serial ports? */
+#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 1
+
+/* How big should the interrupt stack be? */
+#define CONFIGURE_INTERRUPT_STACK_MEMORY (16 * 1024)
+
+extern rtems_configuration_table Configuration;
+
+#define ST_PIMR_PIV 33 /* 33 ticks of the 32.768Khz clock ~= 1msec */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _BSP_H */
+
diff --git a/c/src/lib/libbsp/arm/gumstix/include/bspopts.h.in b/c/src/lib/libbsp/arm/gumstix/include/bspopts.h.in
new file mode 100644
index 0000000000..f11cf7efbb
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gumstix/include/bspopts.h.in
@@ -0,0 +1,16 @@
+/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
diff --git a/c/src/lib/libbsp/arm/gumstix/include/tm27.h b/c/src/lib/libbsp/arm/gumstix/include/tm27.h
new file mode 100755
index 0000000000..b417668d83
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gumstix/include/tm27.h
@@ -0,0 +1,32 @@
+/*
+ * tm27.h
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#ifndef _RTEMS_TMTEST27
+#error "This is an RTEMS internal file you must not include directly."
+#endif
+
+#ifndef __tm27_h
+#define __tm27_h
+
+/*
+ * Define the interrupt mechanism for Time Test 27
+ */
+
+#define MUST_WAIT_FOR_INTERRUPT 0
+
+#define Install_tm27_vector( handler ) /* empty */
+
+#define Cause_tm27_intr() /* empty */
+
+#define Clear_tm27_intr() /* empty */
+
+#define Lower_tm27_intr() /* empty */
+
+#endif