blob: 097518d1503f9431f1cbf01d7d6d50188e5a5b68 [file] [log] [blame]
Simon Glass24b852a2015-11-08 23:47:45 -07001/*
2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef __CONSOLE_H
9#define __CONSOLE_H
10
11extern char console_buffer[];
12
13/* common/console.c */
14int console_init_f(void); /* Before relocation; uses the serial stuff */
15int console_init_r(void); /* After relocation; uses the console stuff */
16int console_assign(int file, const char *devname); /* Assign the console */
17int ctrlc(void);
18int had_ctrlc(void); /* have we had a Control-C since last clear? */
19void clear_ctrlc(void); /* clear the Control-C condition */
20int disable_ctrlc(int); /* 1 to disable, 0 to enable Control-C detect */
21int confirm_yesno(void); /* 1 if input is "y", "Y", "yes" or "YES" */
22
23/*
24 * CONSOLE multiplexing.
25 */
26#ifdef CONFIG_CONSOLE_MUX
27#include <iomux.h>
28#endif
29
30#endif