summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/leon3/start/drvmgr_def_drivers.c
diff options
context:
space:
mode:
authorDaniel Hellstrom <daniel@gaisler.com>2019-09-12 14:48:29 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2021-03-11 17:35:27 +0100
commitb57436c8fcfc7747a35856e69d362d33802f0421 (patch)
tree315404e64422a01f0ed15d7ef85e420532f40a19 /bsps/sparc/leon3/start/drvmgr_def_drivers.c
parentleon,greth: added support for variable sized descriptor table sizes (diff)
downloadrtems-b57436c8fcfc7747a35856e69d362d33802f0421.tar.bz2
leon3: avoid dependency on apbuart/timer driver
Moves drvmgr_drivers[] from amba.c to a separate file in order to avoid the dependecy on APBUART/GPTIMER drivers. This has an effect when user configured not to use timer or uart in their project.
Diffstat (limited to 'bsps/sparc/leon3/start/drvmgr_def_drivers.c')
-rw-r--r--bsps/sparc/leon3/start/drvmgr_def_drivers.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/bsps/sparc/leon3/start/drvmgr_def_drivers.c b/bsps/sparc/leon3/start/drvmgr_def_drivers.c
new file mode 100644
index 0000000000..688b37bab9
--- /dev/null
+++ b/bsps/sparc/leon3/start/drvmgr_def_drivers.c
@@ -0,0 +1,28 @@
+/*
+ * Default BSP drivers when Driver Manager enabled
+ *
+ * COPYRIGHT (c) 2019.
+ * Cobham Gaisler
+ *
+ * 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.
+ */
+#include <bsp.h>
+
+#ifdef RTEMS_DRVMGR_STARTUP
+#include <drvmgr/drvmgr.h>
+
+extern void gptimer_register_drv (void);
+extern void apbuart_cons_register_drv(void);
+/* All drivers included by BSP, this is overridden by the user by including
+ * the drvmgr_confdefs.h. By default the Timer and UART driver are included.
+ */
+drvmgr_drv_reg_func drvmgr_drivers[] __attribute__((weak)) =
+{
+ gptimer_register_drv,
+ apbuart_cons_register_drv,
+ NULL /* End array with NULL */
+};
+
+#endif