summaryrefslogtreecommitdiffstats
path: root/bsps/include/bsp/u-boot.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/include/bsp/u-boot.h')
-rw-r--r--bsps/include/bsp/u-boot.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/bsps/include/bsp/u-boot.h b/bsps/include/bsp/u-boot.h
new file mode 100644
index 0000000000..866cd9bbb0
--- /dev/null
+++ b/bsps/include/bsp/u-boot.h
@@ -0,0 +1,66 @@
+/**
+ * @file
+ *
+ * @ingroup shared_uboot
+ *
+ * @brief U_BOOT Support
+ */
+
+/*
+ * Copyright (c) 2010-2014 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Dornierstr. 4
+ * 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.org/license/LICENSE.
+ */
+
+#ifndef LIBBSP_SHARED_U_BOOT_H
+#define LIBBSP_SHARED_U_BOOT_H
+
+#include <bsp/u-boot-config.h>
+
+#include <sys/types.h>
+#include <stdint.h>
+
+#ifdef U_BOOT_64_BIT_PHYS_SIZE
+ typedef uint64_t phys_size_t;
+#else
+ typedef unsigned long phys_size_t;
+#endif
+
+#ifdef U_BOOT_GENERIC_BOARD_INFO
+ #include <bsp/u-boot-generic-board-info.h>
+#else
+ #include <bsp/u-boot-board-info.h>
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+extern bd_t bsp_uboot_board_info;
+
+/**
+ * @defgroup shared_uboot U_BOOT Support
+ *
+ * @ingroup shared_include
+ *
+ * @brief U_BOOT Support Package
+ */
+
+void bsp_uboot_copy_board_info(const bd_t *src);
+
+/* FIXME: Do not use this function */
+void dumpUBootBDInfo(bd_t *u);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* LIBBSP_SHARED_U_BOOT_H */