libpayload: Add ability to unregister output driver

This patch adds a console_kill_output_driver() function, which can
remove a previously registered output driver. This is mostly useful when
you overlay some output channel over another, such as when the GDB stub
takes direct control of the UART (and thus has to get rid of the
existing serial output driver).

BUG=chrome-os-partner:18390
TEST=None

Change-Id: I6fce95c22fd15cd321ca6b2d6fbc4e3902b1eac3
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/202561
Reviewed-by: Stefan Reinauer <reinauer@chromium.org>
This commit is contained in:
Julius Werner 2014-06-02 20:13:51 -07:00 committed by chrome-internal-fetch
commit 87680a2464
2 changed files with 18 additions and 0 deletions

View file

@ -282,6 +282,7 @@ struct console_output_driver {
void console_add_output_driver(struct console_output_driver *out);
void console_add_input_driver(struct console_input_driver *in);
int console_remove_output_driver(void *function);
#define havechar havekey
/** @} */

View file

@ -48,6 +48,23 @@ void console_add_input_driver(struct console_input_driver *in)
console_in = in;
}
/*
* For when you really need to silence an output driver (e.g. to avoid ugly
* recursions). Takes the pointer of either of the two output functions, since
* the struct console_output_driver itself is often static and inaccessible.
*/
int console_remove_output_driver(void *function)
{
struct console_output_driver **out;
for (out = &console_out; *out; out = &(*out)->next)
if ((*out)->putchar == function || (*out)->write == function) {
*out = (*out)->next;
return 1;
}
return 0;
}
void console_init(void)
{
#ifdef CONFIG_LP_VIDEO_CONSOLE