summaryrefslogtreecommitdiffstats
path: root/c/src
diff options
context:
space:
mode:
authorBen Gras <beng@shrike-systems.com>2014-07-12 17:04:19 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-07-15 10:03:32 -0500
commit7e60b7d125a7285a2411a3dba638dcbdd7905642 (patch)
treec0875ef227ef68d5827a2a0a7ee615591ccb21c3 /c/src
parentsp59: Fix typos (diff)
downloadrtems-7e60b7d125a7285a2411a3dba638dcbdd7905642.tar.bz2
uart-output-char.h: extra offset definition.
All, This patch is submitted as its values are used in my to-be-submitted beagle bsp.
Diffstat (limited to 'c/src')
-rw-r--r--c/src/lib/libbsp/shared/include/uart-output-char.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/shared/include/uart-output-char.h b/c/src/lib/libbsp/shared/include/uart-output-char.h
index b0093501a4..4242901db4 100644
--- a/c/src/lib/libbsp/shared/include/uart-output-char.h
+++ b/c/src/lib/libbsp/shared/include/uart-output-char.h
@@ -34,6 +34,7 @@
#define CONSOLE_IIR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x08))
#define CONSOLE_FCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x08))
#define CONSOLE_LCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x0C))
+#define CONSOLE_MCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x10))
#define CONSOLE_LSR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x14))
#define CONSOLE_SCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x1C))
#define CONSOLE_ACR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x20))
@@ -43,6 +44,7 @@
#define CONSOLE_LSR_RDR 0x1
#define CONSOLE_LSR_THRE 0x20
+#define CONSOLE_LSR_TEMT 0x40
#define BSP_CONSOLE_UART_INIT(dll) \
do { \