summaryrefslogtreecommitdiff
path: root/include/lpc.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-02-06 13:41:43 -0800
committerRandall Spangler <rspangler@chromium.org>2012-02-06 14:53:49 -0800
commit300e7edb87b9f19bcf0a91a9c0273106e646d897 (patch)
tree5c5a4b7afcf6f3d7db6144f592204281cc239158 /include/lpc.h
parent6409913523b047ca7b1dd39bb51edf11f3eefdaa (diff)
downloadchrome-ec-300e7edb87b9f19bcf0a91a9c0273106e646d897.tar.gz
Add UART1 receive support (UART to x86 console)
Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:7488 TEST=type things into the x86 console UART; should appear on the u-boot prompt Change-Id: I75fd225842c03d11d79280fb7453ad37695279e3
Diffstat (limited to 'include/lpc.h')
-rw-r--r--include/lpc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/lpc.h b/include/lpc.h
index 94b92b41bb..d87d9bab7c 100644
--- a/include/lpc.h
+++ b/include/lpc.h
@@ -44,4 +44,7 @@ int lpc_comx_has_char(void);
/* Returns the next character pending on the COMx interface. */
int lpc_comx_get_char(void);
+/* Puts a character to the COMx LPC interface. */
+void lpc_comx_put_char(int c);
+
#endif /* __CROS_EC_LPC_H */