1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2000-2009
11 #include <stdio_dev.h>
12 #include <linux/errno.h>
14 extern char console_buffer[];
16 /* common/console.c */
17 int console_init_f(void); /* Before relocation; uses the serial stuff */
18 int console_init_r(void); /* After relocation; uses the console stuff */
19 int console_start(int file, struct stdio_dev *sdev); /* Start a console device */
20 void console_stop(int file, struct stdio_dev *sdev); /* Stop a console device */
21 int console_assign(int file, const char *devname); /* Assign the console */
23 int had_ctrlc(void); /* have we had a Control-C since last clear? */
24 void clear_ctrlc(void); /* clear the Control-C condition */
25 int disable_ctrlc(int); /* 1 to disable, 0 to enable Control-C detect */
26 int confirm_yesno(void); /* 1 if input is "y", "Y", "yes" or "YES" */
29 * console_search_dev() - search for stdio device with given flags and name
30 * @flags: device flags as per input/output/system
33 * Iterates over registered STDIO devices and match them with given @flags
36 * @return pointer to the &struct stdio_dev if found, or NULL otherwise
38 struct stdio_dev *console_search_dev(int flags, const char *name);
40 #ifdef CONFIG_CONSOLE_RECORD
42 * console_record_init() - set up the console recording buffers
44 * This should be called as soon as malloc() is available so that the maximum
45 * amount of console output can be recorded.
47 * @return 0 if OK, -ENOMEM if out of memory
49 int console_record_init(void);
52 * console_record_reset() - reset the console recording buffers
54 * Removes any data in the buffers
56 void console_record_reset(void);
59 * console_record_reset_enable() - reset and enable the console buffers
61 * This should be called to enable the console buffer.
65 int console_record_reset_enable(void);
68 * console_record_readline() - Read a line from the console output
70 * This reads the next available line from the console output previously
73 * @str: Place to put string
74 * @maxlen: Maximum length of @str including nul terminator
75 * @return length of string returned, or -ENOSPC if the console buffer was
76 * overflowed by the output
78 int console_record_readline(char *str, int maxlen);
81 * console_record_avail() - Get the number of available bytes in console output
83 * @return available bytes (0 if empty)
85 int console_record_avail(void);
87 static inline int console_record_init(void)
89 /* Always succeed, since it is not enabled */
94 static inline void console_record_reset(void)
96 /* Nothing to do here */
99 static inline int console_record_reset_enable(void)
101 /* Cannot enable it as it is not supported */
105 static inline int console_record_readline(char *str, int maxlen)
107 /* Nothing to read */
111 static inline int console_record_avail(void)
113 /* There is never anything available */
117 #endif /* !CONFIG_CONSOLE_RECORD */
120 * console_announce_r() - print a U-Boot console on non-serial consoles
122 * When U-Boot starts up with a display it generally does not announce itself
123 * on the display. The banner is instead emitted on the UART before relocation.
124 * This function prints a banner on devices which (we assume) did not receive
125 * it before relocation.
127 * @return 0 (meaning no errors)
129 int console_announce_r(void);
132 * console_puts_select_stderr() - Output a string to selected console devices
134 * This writes to stderr only. It is useful for outputting errors
136 * @serial_only: true to output only to serial, false to output to everything
138 * @s: String to output
140 void console_puts_select_stderr(bool serial_only, const char *s);
143 * CONSOLE multiplexing.
145 #ifdef CONFIG_CONSOLE_MUX