summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2016-03-16 07:59:29 -0500
committerJoel Sherrill <joel@rtems.org>2016-03-16 08:02:11 -0500
commit59461e5c8295344a2bef0405cae73390e55a1720 (patch)
treebcd9b43573cc58d5704e0c2c9832bebae60e4a34
parentbsp/mpc55xx: Fix BSS initialization (diff)
downloadrtems-59461e5c8295344a2bef0405cae73390e55a1720.tar.bz2
pc386/.../bspimpl.h: New file missed in previous commit.
-rw-r--r--c/src/lib/libbsp/i386/pc386/include/bspimpl.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/include/bspimpl.h b/c/src/lib/libbsp/i386/pc386/include/bspimpl.h
new file mode 100644
index 0000000000..6503e0a0e2
--- /dev/null
+++ b/c/src/lib/libbsp/i386/pc386/include/bspimpl.h
@@ -0,0 +1,37 @@
+/**
+ * @file
+ *
+ * BSP specific helpers
+ */
+
+/*
+ * COPYRIGHT (c) 2016.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * 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 __BSPIMPL_h
+#define __BSPIMPL_h
+
+#include <rtems/pci.h>
+
+/*
+ * PCI Support Methods
+ */
+const pci_config_access_functions *pci_bios_initialize(void);
+const pci_config_access_functions *pci_io_initialize(void);
+
+/*
+ * Helper to parse boot command line arguments related to the console driver
+ */
+void pc386_parse_console_arguments(void);
+
+/*
+ * Dynamically probe for PCI UARTS
+ */
+void pci_uart_probe(void);
+
+#endif