]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/console.h
imx: imxrt1050-evk: Add support for SPI flash booting
[thirdparty/u-boot.git] / include / console.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
24b852a7
SG
2/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
24b852a7
SG
5 */
6
7#ifndef __CONSOLE_H
8#define __CONSOLE_H
9
493a4c8a 10#include <stdbool.h>
41f668b9 11#include <stdio_dev.h>
bd347155 12#include <linux/errno.h>
493a4c8a 13
24b852a7
SG
14extern char console_buffer[];
15
16/* common/console.c */
17int console_init_f(void); /* Before relocation; uses the serial stuff */
18int console_init_r(void); /* After relocation; uses the console stuff */
41f668b9
AS
19int console_start(int file, struct stdio_dev *sdev); /* Start a console device */
20void console_stop(int file, struct stdio_dev *sdev); /* Stop a console device */
24b852a7
SG
21int console_assign(int file, const char *devname); /* Assign the console */
22int ctrlc(void);
23int had_ctrlc(void); /* have we had a Control-C since last clear? */
24void clear_ctrlc(void); /* clear the Control-C condition */
25int disable_ctrlc(int); /* 1 to disable, 0 to enable Control-C detect */
26int confirm_yesno(void); /* 1 if input is "y", "Y", "yes" or "YES" */
27
ae69738d
AS
28/**
29 * console_search_dev() - search for stdio device with given flags and name
30 * @flags: device flags as per input/output/system
31 * @name: device name
32 *
33 * Iterates over registered STDIO devices and match them with given @flags
34 * and @name.
35 *
185f812c 36 * Return: pointer to the &struct stdio_dev if found, or NULL otherwise
ae69738d 37 */
3232487d 38struct stdio_dev *console_search_dev(int flags, const char *name);
e645b9bd 39
bd347155 40#ifdef CONFIG_CONSOLE_RECORD
9854a874
SG
41/**
42 * console_record_init() - set up the console recording buffers
43 *
44 * This should be called as soon as malloc() is available so that the maximum
45 * amount of console output can be recorded.
bd347155 46 *
185f812c 47 * Return: 0 if OK, -ENOMEM if out of memory
9854a874
SG
48 */
49int console_record_init(void);
50
51/**
52 * console_record_reset() - reset the console recording buffers
53 *
54 * Removes any data in the buffers
55 */
56void console_record_reset(void);
57
58/**
59 * console_record_reset_enable() - reset and enable the console buffers
60 *
61 * This should be called to enable the console buffer.
bd347155 62 *
185f812c 63 * Return: 0 (always)
9854a874 64 */
bd347155 65int console_record_reset_enable(void);
9854a874 66
b6123128
SG
67/**
68 * console_record_readline() - Read a line from the console output
69 *
70 * This reads the next available line from the console output previously
71 * recorded.
72 *
73 * @str: Place to put string
74 * @maxlen: Maximum length of @str including nul terminator
185f812c 75 * Return: length of string returned, or -ENOSPC if the console buffer was
c1a2bb4f 76 * overflowed by the output
b6123128
SG
77 */
78int console_record_readline(char *str, int maxlen);
79
80/**
81 * console_record_avail() - Get the number of available bytes in console output
82 *
185f812c 83 * Return: available bytes (0 if empty)
b6123128
SG
84 */
85int console_record_avail(void);
25c8b9f2 86
9ce75f49
IA
87/**
88 * console_record_isempty() - Returns if console output is empty
89 *
90 * Return: true if empty
91 */
92bool console_record_isempty(void);
93
25c8b9f2
SJ
94/**
95 * console_in_puts() - Write a string to the console input buffer
96 *
97 * This writes the given string to the console_in buffer which will then be
98 * returned if a function calls e.g. `getc()`
99 *
100 * @str: the string to write
185f812c 101 * Return: the number of bytes added
25c8b9f2
SJ
102 */
103int console_in_puts(const char *str);
bd347155
SG
104#else
105static inline int console_record_init(void)
106{
107 /* Always succeed, since it is not enabled */
108
109 return 0;
110}
111
112static inline void console_record_reset(void)
113{
114 /* Nothing to do here */
115}
116
117static inline int console_record_reset_enable(void)
118{
119 /* Cannot enable it as it is not supported */
120 return -ENOSYS;
121}
122
123static inline int console_record_readline(char *str, int maxlen)
124{
125 /* Nothing to read */
126 return 0;
127}
128
129static inline int console_record_avail(void)
130{
131 /* There is never anything available */
132 return 0;
133}
134
25c8b9f2
SJ
135static inline int console_in_puts(const char *str)
136{
137 /* There is never anything written */
138 return 0;
139}
140
9ce75f49
IA
141static inline bool console_record_isempty(void)
142{
143 /* Always empty */
144 return true;
145}
146
bd347155 147#endif /* !CONFIG_CONSOLE_RECORD */
b6123128 148
b0895384
SG
149/**
150 * console_announce_r() - print a U-Boot console on non-serial consoles
151 *
152 * When U-Boot starts up with a display it generally does not announce itself
153 * on the display. The banner is instead emitted on the UART before relocation.
154 * This function prints a banner on devices which (we assume) did not receive
155 * it before relocation.
156 *
185f812c 157 * Return: 0 (meaning no errors)
b0895384
SG
158 */
159int console_announce_r(void);
160
493a4c8a
SG
161/**
162 * console_puts_select_stderr() - Output a string to selected console devices
163 *
164 * This writes to stderr only. It is useful for outputting errors
165 *
166 * @serial_only: true to output only to serial, false to output to everything
167 * else
168 * @s: String to output
169 */
170void console_puts_select_stderr(bool serial_only, const char *s);
171
cde03fa2
SG
172/**
173 * console_clear() - Clear the console
174 *
175 * Uses an ANSI sequence to clear the display, failing back to clearing the
176 * video display directly if !CONFIG_VIDEO_ANSI
177 *
178 * Return: 0 if OK, -ve on error
179 */
180int console_clear(void);
181
24b852a7
SG
182/*
183 * CONSOLE multiplexing.
184 */
185#ifdef CONFIG_CONSOLE_MUX
186#include <iomux.h>
187#endif
188
189#endif