summaryrefslogtreecommitdiffstats
path: root/bsps/include/grlib/apbuart_termios.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/include/grlib/apbuart_termios.h')
-rw-r--r--bsps/include/grlib/apbuart_termios.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/bsps/include/grlib/apbuart_termios.h b/bsps/include/grlib/apbuart_termios.h
new file mode 100644
index 0000000000..ca6b5d3b3e
--- /dev/null
+++ b/bsps/include/grlib/apbuart_termios.h
@@ -0,0 +1,41 @@
+/*
+ * COPYRIGHT (c) 1989-1998.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * Modified for LEON3 BSP.
+ * COPYRIGHT (c) 2004.
+ * Gaisler Research.
+ *
+ * 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 APBUART_TERMIOS_H
+#define APBUART_TERMIOS_H
+
+#include <rtems/termiostypes.h>
+#include "grlib.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+struct apbuart_context {
+ rtems_termios_device_context base;
+ struct apbuart_regs *regs;
+ unsigned int freq_hz;
+ rtems_vector_number irq;
+ volatile int sending;
+ char *buf;
+};
+
+extern const rtems_termios_device_handler apbuart_handler_interrupt;
+
+extern const rtems_termios_device_handler apbuart_handler_polled;
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* APBUART_TERMIOS_H */