summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/shared/include/start.h
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2008-09-22 11:49:50 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2008-09-22 11:49:50 +0000
commit8dcfc0a88e0dc70dacc7db17c1d8721a9b13b8d9 (patch)
tree16f7b03e3894ae8ffed3e842ee1557e016764d4a /c/src/lib/libbsp/arm/shared/include/start.h
parentInclude required header files. Removed support for old PowerPC exception han... (diff)
downloadrtems-8dcfc0a88e0dc70dacc7db17c1d8721a9b13b8d9.tar.bz2
*** empty log message ***
Diffstat (limited to 'c/src/lib/libbsp/arm/shared/include/start.h')
-rw-r--r--c/src/lib/libbsp/arm/shared/include/start.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/shared/include/start.h b/c/src/lib/libbsp/arm/shared/include/start.h
new file mode 100644
index 0000000000..1ad8f0e797
--- /dev/null
+++ b/c/src/lib/libbsp/arm/shared/include/start.h
@@ -0,0 +1,49 @@
+/**
+ * @file
+ *
+ * @brief Start entry functions.
+ */
+
+/*
+ * Copyright (c) 2008
+ * Embedded Brains GmbH
+ * Obere Lagerstr. 30
+ * D-82178 Puchheim
+ * Germany
+ * rtems@embedded-brains.de
+ *
+ * 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.
+ */
+
+#ifndef LIBBSP_ARM_SHARED_START_H
+#define LIBBSP_ARM_SHARED_START_H
+
+#ifndef ASM
+
+ /**
+ * @brief Start entry hook 0.
+ *
+ * This hook will be called from the start entry code after all modes and
+ * stack pointers are initialized but before the copying of the exception
+ * vectors.
+ */
+ void bsp_start_hook_0( void);
+
+ /**
+ * @brief Start entry hook 1.
+ *
+ * This hook will be called from the start entry code after copying of the
+ * exception vectors but before the call to boot card.
+ */
+ void bsp_start_hook_1( void);
+
+#else
+
+ .extern bsp_start_hook_0
+
+ .extern bsp_start_hook_1
+
+#endif
+
+#endif /* LIBBSP_ARM_SHARED_START_H */