blob: 4c6b8f2614ca8766d3cb9f057f385068f3dbccbf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass24b852a2015-11-08 23:47:45 -07002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass24b852a2015-11-08 23:47:45 -07005 */
6
7#ifndef __CONSOLE_H
8#define __CONSOLE_H
9
Simon Glass493a4c82020-07-02 21:12:13 -060010#include <stdbool.h>
11
Simon Glass24b852a2015-11-08 23:47:45 -070012extern char console_buffer[];
13
14/* common/console.c */
15int console_init_f(void); /* Before relocation; uses the serial stuff */
16int console_init_r(void); /* After relocation; uses the console stuff */
17int console_assign(int file, const char *devname); /* Assign the console */
18int ctrlc(void);
19int had_ctrlc(void); /* have we had a Control-C since last clear? */
20void clear_ctrlc(void); /* clear the Control-C condition */
21int disable_ctrlc(int); /* 1 to disable, 0 to enable Control-C detect */
22int confirm_yesno(void); /* 1 if input is "y", "Y", "yes" or "YES" */
23
Simon Glass9854a872015-11-08 23:47:48 -070024/**
25 * console_record_init() - set up the console recording buffers
26 *
27 * This should be called as soon as malloc() is available so that the maximum
28 * amount of console output can be recorded.
29 */
30int console_record_init(void);
31
32/**
33 * console_record_reset() - reset the console recording buffers
34 *
35 * Removes any data in the buffers
36 */
37void console_record_reset(void);
38
39/**
40 * console_record_reset_enable() - reset and enable the console buffers
41 *
42 * This should be called to enable the console buffer.
43 */
44void console_record_reset_enable(void);
45
Simon Glassb0895382017-06-15 21:37:50 -060046/**
Simon Glassb6123122020-01-27 08:49:54 -070047 * console_record_readline() - Read a line from the console output
48 *
49 * This reads the next available line from the console output previously
50 * recorded.
51 *
52 * @str: Place to put string
53 * @maxlen: Maximum length of @str including nul terminator
54 * @return length of string returned
55 */
56int console_record_readline(char *str, int maxlen);
57
58/**
59 * console_record_avail() - Get the number of available bytes in console output
60 *
61 * @return available bytes (0 if empty)
62 */
63int console_record_avail(void);
64
65/**
Simon Glassb0895382017-06-15 21:37:50 -060066 * console_announce_r() - print a U-Boot console on non-serial consoles
67 *
68 * When U-Boot starts up with a display it generally does not announce itself
69 * on the display. The banner is instead emitted on the UART before relocation.
70 * This function prints a banner on devices which (we assume) did not receive
71 * it before relocation.
72 *
73 * @return 0 (meaning no errors)
74 */
75int console_announce_r(void);
76
Simon Glass493a4c82020-07-02 21:12:13 -060077/**
78 * console_puts_select_stderr() - Output a string to selected console devices
79 *
80 * This writes to stderr only. It is useful for outputting errors
81 *
82 * @serial_only: true to output only to serial, false to output to everything
83 * else
84 * @s: String to output
85 */
86void console_puts_select_stderr(bool serial_only, const char *s);
87
Simon Glass24b852a2015-11-08 23:47:45 -070088/*
89 * CONSOLE multiplexing.
90 */
91#ifdef CONFIG_CONSOLE_MUX
92#include <iomux.h>
93#endif
94
95#endif