summaryrefslogtreecommitdiff
path: root/src/drivers/usb/ehci_debug.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-02-10 00:00:44 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-02-20 23:29:12 +0100
commitea6736a2d0b4f30e564eab25128d9c67058330da (patch)
tree2c656191cd65112e07e2a38644fcebfa3b5777c0 /src/drivers/usb/ehci_debug.h
parent902626c23c5b56765900a7c8e3dded109f4044fa (diff)
downloadcoreboot-ea6736a2d0b4f30e564eab25128d9c67058330da.tar.xz
usbdebug: Unify console API
Struct dbgp_pipe would not be suitable for use with xHCI. Just use an index, it is easy to setup in Kconfig if our future debug setup has separate pipes for console output and debugging/traceings. Change-Id: Icbbd28f03113b208016f80217ab801d598d443a8 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5227 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/drivers/usb/ehci_debug.h')
-rw-r--r--src/drivers/usb/ehci_debug.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/drivers/usb/ehci_debug.h b/src/drivers/usb/ehci_debug.h
index 30bf724cb8..39f5f7239a 100644
--- a/src/drivers/usb/ehci_debug.h
+++ b/src/drivers/usb/ehci_debug.h
@@ -21,6 +21,8 @@
#ifndef _EHCI_DEBUG_H_
#define _EHCI_DEBUG_H_
+#include <types.h>
+
void usbdebug_re_enable(unsigned ehci_base);
void usbdebug_disable(void);
@@ -51,4 +53,10 @@ struct dbgp_pipe
void dbgp_put(struct dbgp_pipe *pipe);
int dbgp_try_get(struct dbgp_pipe *pipe);
+struct dbgp_pipe *dbgp_console_output(void);
+struct dbgp_pipe *dbgp_console_input(void);
+int dbgp_ep_is_active(struct dbgp_pipe *pipe);
+int dbgp_bulk_write_x(struct dbgp_pipe *pipe, const char *bytes, int size);
+int dbgp_bulk_read_x(struct dbgp_pipe *pipe, void *data, int size);
+
#endif /* _EHCI_DEBUG_H_ */